我一直在基於模板處理一些CSS。不是我的選擇,但這是我的。未記錄的CSS屬性
在清理CSS的過程中(有人使用CSS美化器對其進行分欄,使其成爲主要的PITA來編寫),我遇到了一個完全無法解釋的CSS屬性:nowhitespace
。
在我的文件中,它顯示爲nowhitespace: afterproperty;
,並且通常在單個規則中重複多次。在網絡拖網之後,我發現這個神祕的屬性出現在樣式表的左側和右側,但從來沒有對它做什麼或者作者認爲它做了什麼解釋。
所以,我呼籲你,Stackoverflow社區,請解釋這個屬性的起源,據我所知,完全沒有什麼,並且沒有已知的瀏覽器識別。
下面是從文檔我有,片斷美化後:
ul.nav a, ul.nav a:visited {
/* grouping these selectors makes sure that your links
retain their button look even after being visited */
padding: 5px 5px 5px 15px;
nowhitespace: afterproperty;
nowhitespace: afterproperty;
nowhitespace: afterproperty;
nowhitespace: afterproperty;
nowhitespace: afterproperty;
nowhitespace: afterproperty;
display: block; /* this gives the link block properties
causing it to fill the whole LI containing it. This
causes the entire area to react to a mouse click. */
width: 160px; /*this width makes the entire button
clickable for IE6. If you don't need to support IE6,
it can be removed. Calculate the proper width by
subtracting the padding on this link from the width
of your sidebar container. */
text-decoration: none;
background-color: #C6D580;
}
尋求評論的文字後,我相信這個CSS模板的起源是一個通用的Dreamweaver模板。 Here。我想知道我的特定版本來自哪裏。
誰寫的CSS代碼? –
「*拖網後,我發現這個神祕的財產出現在樣式表的左側和右側*」 - 請提供指向樣式表的鏈接。 –
沒有必要爲''nowhitespace''''''afterproperty''創建標籤,因爲它們太具體。 – yadutaf