2017-02-28 82 views
-1

我能把<a href="#">test</a><div class="test">一個內部DIV級標籤

我深知<div class="test"> <a href="#">test</a> </div> 我的問題與該代碼是在一個標籤留下一些造型讓我在CSS做,我會很高興盡可能縮減我的代碼。

+0

你還將如何在錨中放置一個錨點? – j08691

+0

好吧,我不會問,如果我知道有沒有其他方式...... – Chris

+0

不,這就是它。 – j08691

回答

0

絕對!沒有理由爲什麼錨不能駐留在專區內:

<div class="test"> 
    <a href="#">test</a> 
</div> 

是完全有效的語法。

<body> 
    <a class="test2" href="#">test</a> 
</body> 

也是完全有效的語法。

這真的只是你想如何應用你的造型。您可以使用:

.test a { 
    // Style the whole DIV, which can contain multiple <a> tags 
} 

或者:

.test2 { 
    // Style the <a> tags that match the class `test2`. 
} 

希望這有助於! :)

+1

OP已經知道這是有效的語法。他正在尋找一些簡短的替代方法。 – j08691

+0

hmm。我沒有想到把課程放在主播中。會嘗試一下。 – Chris

+0

謝謝你黑曜石年齡:)我剛剛在我的css中刪除了8行。我想我只是在工作上眨眼。 – Chris