gpt4 book ai didi

html - box-shadow底部不完整

转载 作者:太空宇宙 更新时间:2023-11-04 03:21:05 24 4
gpt4 key购买 nike

我看不到 imageborder 底部的框阴影。我认为它被削减了,我不知道我必须做什么......也许将文章的高度设置得更高?这是页面Page和代码

*{
padding: 0px;
margin: 0px;
font-family: Raleway;
line-height: 20px;
}

body{
background-image: url(images/hintergrund.png);
}

section{
margin-top: 20px;
width: 1100px;
background: white;
border: 2px solid black;
box-shadow: 8px 8px 10px 0px rgba(0,0,0,0.75);

margin-left: auto;
margin-right: auto;
padding: 20px;
}

article{
width: 100%;
overflow: hidden;
}

.bild{
height: 200px;
width: 200px;
float: left;
border: 2px solid black;
box-shadow: 8px 8px 10px 0px rgba(0,0,0,0.75);
}

.text{
float: right;
width: 860px;
word-wrap: break-word;
height: 200px;
}
<html>
<head>
<title>Homepage</title>
<link rel="stylesheet" href="index.css">
<link href='http://fonts.googleapis.com/css?family=Raleway:600' rel='stylesheet' type='text/css'>


<!-- include jQuery library -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<!-- include Cycle plugin -->
<script type="text/javascript" src="http://malsup.github.com/jquery.cycle.all.js"></script>

<script type="text/javascript">
$(document).ready(function() {
$('.bild').cycle({
fx: 'scrollRight',
next: '.bild',
timeout: 0
});
});
</script>
</head>
<body>
<section>
<article>
<div class="bild">
<img src="http://malsup.github.com/images/beach1.jpg" width="200" height="200" />
<img src="http://malsup.github.com/images/beach2.jpg" width="200" height="200" />
<img src="http://malsup.github.com/images/beach3.jpg" width="200" height="200" />
<img src="http://malsup.github.com/images/beach4.jpg" width="200" height="200" />
<img src="http://malsup.github.com/images/beach5.jpg" width="200" height="200" />
</div>
</article>
</section>
</body>
</html>

................................................

最佳答案

这是因为你在 article 上有 overflow: hidden。改为使用 clearfix:

.article:after{
content: '';
display:block;
clear: both;
}

并在 .bild 上添加溢出以隐藏您的图像

.bild{
height: 200px;
width: 200px;
float: left;
border: 2px solid black;
box-shadow: 8px 8px 10px 0px rgba(0,0,0,0.75);
overflow: hidden;
}

FIDDLE

overflow:hidden 就像它听起来的那样,隐藏任何溢出其边界的东西。你通常可以用它来做一些事情,比如清除 float 问题(无论你是否知道你正在做)和隐藏图像(你也在做)但在某些情况下(这是一个)它会阻止你的盒子阴影延伸越过它的边界。所以使用 clearfix 清除你的 float 而不隐藏盒子阴影。

关于html - box-shadow底部不完整,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27881759/

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