gpt4 book ai didi

css - HTML5 aside 元素未包装在包装器内

转载 作者:行者123 更新时间:2023-11-28 11:11:13 25 4
gpt4 key购买 nike

我不明白为什么 body wrap 元素不能正常工作。

我不想添加额外的 div 并将其保留在该公式中。

有什么想法吗?

代码:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<style>

body {
background: #fff;
border: 1px solid #ccc;
margin: 10px auto;
padding: 10px;
width: 400px;
position: relative;
}

aside {
float: right;
width: 344px;
}


aside section:first-child {
border-color: #cc0000;
border-style: dotted;
border-width: 2px;
text-align: center;
}

aside section:first-child video {
width: 320px;
height: 240px;
}

</style>
</head>
<body>

<aside>

<section>

<video width=320 height=240 controls preload=none poster="https://puaction.com/vid/mainvideo/pua-video.jpg">
<source src="https://puaction.com/vid/mainvideo/mainvideo.mp4" type="video/mp4">
<source src="https://puaction.com/vid/mainvideo/mainvideo.webm" type="video/webm">
<source src="https://puaction.com/vid/mainvideo/mainvideo.ogv" type="video/ogg">
</video>

</section>

</aside>

</body>
</html>

jsFiddle :)

这里有什么问题吗?

http://jsfiddle.net/R3kBx/

最佳答案

class="clearfix" 添加到您的正文中。然后在你的CSS中添加:

.clearfix:after {
content: " "; /* Older browser do not support empty content */
visibility: hidden;
display: block;
height: 0;
clear: both;
}

关于css - HTML5 aside 元素未包装在包装器内,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21976493/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com