div+css样式背景色无法平铺怎么弄?
发布网友
发布时间:2022-05-18 08:54
我来回答
共5个回答
热心网友
时间:2023-10-12 21:46
改成下面这样你试试,应该可以了
<div style="background-color:#ffffff;overflow:auto;zoom:1;">
<div style="float:left"></div>
<div style="float:left"></div>
</div>
参考资料:http://www.aa25.cn/layout/index.shtml
热心网友
时间:2023-10-12 21:47
div+css样式背景色无法平铺怎么弄?
请看案例:
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>无标题页</title>
</head>
<body>
<div>
<input type="text" onkeypress="set(this)"/>
<div id="div123" style="background-color:Yellow; float:left;"></div>
</div>
<script type="text/javascript">
function set(tag){
document.getElementById("div123").innerHTML=tag.value;
}
</script>
</body>
</html>
热心网友
时间:2023-10-12 21:47
给样式设置高宽就OK了
热心网友
时间:2023-10-12 21:48
外层定义宽度
里面的两个DIV 要以其中的一个程序长的DIV的为蓝本 设置两个DIV宽度一致。
如果不行 M我
热心网友
时间:2023-10-12 21:49
<div style="background-color:#ffffff;overflow:auto;zoom:1;">
<div style="float:left"></div>
<div style="float:left"></div>
<div style="clear:both;"></div>
</div>
// <div style="clear:both;"></div>