经典论坛 » WEB标准化专栏 » 三列中间自适应大小的求助,特别感谢
初级会员
查看详细资料
TOP
专长 网页设计,前端制作
新手上路
<style> #left{width:300px;height:300px;position:absolute;left:0px;top:10px;border:1px solid #000} #right{width:300px;height:300px; position:absolute; right:0px; top:10px; border:1px solid #000} #center{height:300px; border:1px solid #FF0000; margin-left:310px; margin-right:310px;} #center p{text-align:center;} </style> <div id="left">这里是left里的内容</div> <div id="center"> <p>这里是center的内容,要求左右和上下均居中。</p> <p>与左右DIV相距10px</p> </div> <div id="right">这里是right里的内容</div>