我有以下用于快速链接容器的 CSS3 代码。我不知道为什么,但渐变背景不在文本下方。如果我删除float: left
from div.quicklinks
,我将显示渐变背景,但我想要一些文字在左边。谢谢
div.quickLinksContainer {
clear:both;
border-top: 1px solid #999999;
text-align:center;
margin: auto;
width: 100%;
padding: 10px;
background-image: linear-gradient(bottom, rgb(179,175,176) 49%, rgb(237,237,237) 75%);
}
div.quickLinks {
font-size: 12px;
float:left;
}
.quickLinks h2 {
color:#666666;
font-size:14px;
font-weight:bold;
margin-bottom:10px;
}
.quickLinks li a {
color:#555555;
text-decoration:initial;
}