ul的margin撑不开想要的距离的办法
Posted 好高的一座山
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ul的margin撑不开想要的距离的办法相关的知识,希望对你有一定的参考价值。
- <!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">
- *{margin:0;
- padding;0;}
- span{background:#fdb48c;}
- .warp{background:#666;
- border:#000000 1px solid}
- .warp ul{display:block; background:#ccc; list-style:none; margin:10px; padding:0px;}
- </style>
- </head>
- <body>
- <span> begin begin begin </span>
- <div class="warp">
- <ul>
- <li>text text</li>
- <li>text text</li>
- <li>text text</li>
- <li>text text</li>
- <li>text text</li>
- </ul>
- </div>
- <span> end end end end </span>
- </body>
- </html>
复制代码
给wrap加上边框可以解决这问题,,不过建议把ul:margin改为wrap:padding,,,更佳
以上是关于ul的margin撑不开想要的距离的办法的主要内容,如果未能解决你的问题,请参考以下文章
css中padding和margin到底是相对于父元素还是子元素?