CSS: Can I select data value greater than?
问题 <div data-age="30">30</div> Is there a way to have (PURE CSS) div in red when age<18 and in blue where age>18 回答1: Here is an idea based on this previous answer where you can consider CSS variables: .box { font-size:30px; padding:5px; display:inline-block; font-family:monospace; overflow:hidden; color:#fff; background: linear-gradient(red,red) 0 0/100% calc((18 - var(--a))*1px), blue; } .box:before { content:attr(style); text-indent:-4ch; display:inline-block; } <div style="--a:30" class="box