关于css控制div位置的问题
发布网友
发布时间:2022-04-06 13:22
我来回答
共3个回答
热心网友
时间:2022-04-06 14:51
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>test</title>
<style type="text/css">
<!--
html,body{ margin:0; height:100%}
#wrapper{ margin:0 auto;width:80%;height:100%}
#left{ float:left; width:30%; height:100%; background:#eeeeee}
#right{ float:left; width:70%; height:100%; background: #eeeecc}
-->
</style>
</head>
<body>
<div id="wrapper" style="float:inherit">
<div id="left">左侧栏</div>
<div id="right">右侧栏</div>
</div>
</body>
</html>
学CSS没必要这样到处问嘛,找几套DIV+CSS布局的站看看CSS怎么写的不就得了
#wrapper{ margin:0 auto;width:80%;height:100%}
这是控制整页面的那个DIV的,要满屏就调整width追问不用到哪复制在我这粘贴吧,这个我看多少遍了
热心网友
时间:2022-04-06 16:09
css 只是对你定义好的div层的样式的一个规定,至于你说的呼唤(互换)他们的位置,应该在html部分操作 就是在html文档流中进行调整
既把 common_cell 和 center_cell的顺序互换就行了
热心网友
时间:2022-04-06 17:44
class名字common_cell和center_cell 互换一下不就可以了