布局记录

一、针对左右模块内容高度一致的布局:(适用左导航与右内容)

<div class="wraper">
   //左侧导航
   <div class="left-menu">
   </div>

   //右侧内容模块
   <div class="right-main">
   </div>

</div>
<style> //父级容器设置table即可 .wraper{ display:table; } //左右模块正常布局即可 .left-menu{} .right-main{} </style>

猜你喜欢

转载自www.cnblogs.com/xiaolucky/p/12658390.html