クイック リンク コンテナー用の次の CSS3 コードがあります。理由はわかりませんが、グラデーションの背景がテキストの下にありません。float: left
からを削除する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;
}