【发布时间】:2018-11-29 02:17:33
【问题描述】:
我正在模仿这个网页作为练习:
https://getbootstrap.com/docs/3.3/getting-started/
我很难将带您到 Bootstrap 4 的蓝色 div 附加到页面顶部。我想确保 div 之间没有空格,就像提供的网站一样。
这是我目前的代码:
body {
background-color: white;
}
#top {
background-color: #386CD5;
text-align: center;
color: white;
text-decoration: bold;
padding: 16px;
border-radius:0px;
}
#special1:visited {
color:#386CD5;
}
#top:hover {
background-color: #2C62BF;
}
<a id="special1" href="https://getbootstrap.com">
<div id="top">
<strong>Bootstrap 4 is here!</strong>
</div>
</a>
谢谢。
【问题讨论】: