亲爱的你写的代码是正确的,但在Css中有一个小缺陷。
两条线都落在Div的高度Div正在为您创造困境。
我有两种方法适合你:
---------- 1。 改变你自己的代码 ----------
body {
background-color: white;
border: 5px solid blue;
}
header {
text-align: center;
height: 155px;
box-sizing: border-box;
border: 5px solid blue;
width: 100%;
}
---------- 2。 其次我的方式: ----------
body {
background-color: white;
border: 5px solid blue;
}
#myid{
text-align: center;
height: 155px;
box-sizing: border-box;
border: 5px solid blue;
width: 100%;
}