dreamweaver里使三个div并列一列,求解答

2024-12-27 01:24:03
推荐回答(2个)
回答1:











CSS:
.pro{ width:960px; height:auto; margin:10px;}
.pro1{ width:311px; height:auto; margin:0 0 9px 9px; text-align:center; background:url(../images/pro-bg.jpg) no-repeat;}
.icon{width:139px; height:139px; margin:20px 80px; float:left}
.buy1{ width:137px; height:35px; margin:10px 60px; float:left;}

因为pro1高度自动的原因吧,你设置一个高度试下

回答2:

icon和buy1设置了浮动,浮动是不能撑开父标签的。
解决方法有很多
这里说两个吧
1:设置父标签高度
2:在浮动标签下加入


完整: