>웹 프론트엔드 >HTML 튜토리얼 >增加了边框,内容就下移_html/css_WEB-ITnose

增加了边框,内容就下移_html/css_WEB-ITnose

WBOY
WBOY원래의
2016-06-24 12:12:592113검색

原本没边框的时,里面的内容刚好撑满div,
但是加了边框后,里面的内容就偏移了foot高度的一半!
        我测试了下,是(margin-top:15px;
border-bottom:1px;)这里出问题,请问该如何修改!
#foot{
width:100%;
height:43px;
margin-top:15px;
border-bottom:1px;
border-bottom-style:solid;
border-top:1px;
border-top-style:solid;
background-color:#996699;
}
.zi{
text-align:center;
color:#646464;
}


Copyright @2006 Your Company | All rights reserved

Design by Gerhard Studios | W3C XHTML 1.1 | W3C CSS 2.0



回复讨论(解决方案)

<div id="foot">        <div class="zi">            Copyright @2006 Your Company | All rights reserved<br>            Design by <a href="ss.html">Gerhard Studios</a> | <a href="ss.html">W3C XHTML 1.1</a>            | <a href="ss.html">W3C CSS 2.0</a>        </div>    </div>

p元素换成div

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.