3
如何使用attr()
來選擇數據屬性並根據值設置各種CSS屬性?例如,我有這個jsfiddle http://jsfiddle.net/rh1vfmso/ - 我通過數據寬度設置寬度,然後嘗試通過設置它width: attr(data-width);
如何使用CSS中的HTML數據屬性作爲屬性?
它的工作原理時,我設置的內容作爲屬性,但沒有別的。我如何能夠根據HTML中屬性中設置的內容設置寬度?
<style type='text/css'>
input[type='checkbox']:checked ~ .size:before {
content: attr(data-width);
display: block;
height: 30px;
background-color: red;
width: attr(data-width);
/*width: 100px;*/
}
</style>
<div>
<input type='checkbox' id='resize'>
<label for='resize'>Resize</label>
<div class="size" data-width=100px></div>
</div>
d'oh我應該檢查兼容性圖表。謝謝! (不能接受幾分鐘的答案) – zoite
更像是不存在的哈哈。看到我剛剛標記的那個笨蛋。 – BoltClock
@BoltClock這是一個很好的。謝謝。 –