手记

关于 ul 嵌套 li 并且再嵌套 a 的 BUG

在写网页的过程中,总是写完了这一套,样式出了问题又去找问题废了好长时间
总结一下写法
以下是结构  经常会出现 li 里面与文字不在一个高度上

  <div class="indicators">
                <ul>
                    <li>1</li>
                    <li>2</li>
                    <li>3</li>
                    <li>4</li>
                </ul>
            </div>

解决方法: ul 的高 == li 的高 == ul 的 行高 == li 的行高

 1  .indicators ul { 2             width: 100px; 3             height: 15px; 4             background:rgba(0,0,0,0.3); 5             line-height: 15px; 6             border-radius: 10px; 7         } 8         .indicators li { 9             float: left;10             border-radius: 50%;11             width: 15px;12             height: 15px;13             background-color: #fff;14             text-align: center;15             margin-right: 10px;16             font-size: 10px;17             cursor: pointer;18         }

原文出处:https://www.cnblogs.com/Lzxgg-xl/p/10153764.html  

0人推荐
随时随地看视频
慕课网APP