中工作,我有以下的CSS:文本修飾不DIV
.top-category-item {
height: 338px;
background-color: black;
position: relative;
}
.top-category-item-copy {
width: 100%;
/* Fallback for web browsers that doesn't support RGBa */
background: rgb(0, 0, 0);
/* RGBa with 0.8 opacity */
background: rgba(0, 0, 0, 0.8);
bottom: 0px;
position: absolute;
padding-left: 5px;
padding-right: 15px;
padding-top: 2px;
padding-bottom: 4px;
box-sizing:border-box;
-moz-box-sizing:border-box; /* Firefox */
-webkit-box-sizing:border-box; /* Safari */
font-family: Georgia, Times New Roman, serif;
font-size: 35px;
line-height: 36px;
font-weight: bold;
color: #F1F1F1;
}
.top-category-item-copy a {
text-decoration: none;
}
這是我的HTML:
<a href="">
<div class="top-category-item low-gutter">
<img src="images/feature-placeholder.jpg" alt="latest-image-placeholder"/ width=100% height=100%>
<div class="top-category-item-copy">Earlier French Quarter curfew for youths gets mixed reaction.</div>
</div>
</a>
我搜索堆棧溢出瞭解決問題的對策:
嘗試交換一點點的語法
.class-name a:link {text-decoration: none;}
嘗試聲明全局
a {text-decoration: none;}
,這工作,但感覺就像一個解決辦法,而不是一個真正的解決方案
您的CSS鏈接「在類」下方,但您的HTML是相反的方式。這是行不通的。你可以添加一個類到「a」本身,並把你的文字修飾。 – reedlauber 2012-02-27 18:12:06
太棒了,這個工程。但是...我仍然覺得我不明白爲什麼我的代碼不起作用。你能多解釋一下嗎? – 2012-02-27 18:17:17
如果不希望規則適用於頁面上的所有鏈接,請將'.top-category-item-copy-a複製一個{...'爲'a {...'或引用父元素。 – j08691 2012-02-27 18:21:48