父级 div 跟随子级的高度 - 对于没有浮动的子级
我能找到的解决问题的唯一答案是明确的浮动 - 但我没有。所以希望你能提供另一个答案:-)
这是我的代码,我试图使按钮的父 div 遵循填充完成的扩展。
<div class="button">
<a href="#">add</a>
</div>
和 css
.button {
background-color: #ccc; }
.button a {
background-color: #96BD1E;
color: black;
font-size: large;
padding: 6px 12px;
width: 120px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-opera-border-radius: 5px;
-khtml-border-radius: 5px;
border-radius: 5px;
height: 59px;
margin: 10px;
border-top-left-radius: 5px 5px;
border-top-right-radius: 5px 5px;
border-bottom-right-radius: 5px 5px;
border-bottom-left-radius: 5px 5px;
clear: both;
}
这是一个使用 http://jsfiddle.net/zNLVZ/1/
The only answer I can find to my problem is clear the float - but I have non. So hope you can help with another answer :-)
Here is my code, and I am trying to make the parent div of a button follow the expansion done by the padding.
<div class="button">
<a href="#">add</a>
</div>
And css
.button {
background-color: #ccc; }
.button a {
background-color: #96BD1E;
color: black;
font-size: large;
padding: 6px 12px;
width: 120px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-opera-border-radius: 5px;
-khtml-border-radius: 5px;
border-radius: 5px;
height: 59px;
margin: 10px;
border-top-left-radius: 5px 5px;
border-top-right-radius: 5px 5px;
border-bottom-right-radius: 5px 5px;
border-bottom-left-radius: 5px 5px;
clear: both;
}
And here is an example of it to play with http://jsfiddle.net/zNLVZ/1/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将你的 css 更改为:
Change your css to this: