CSS

2009
2010
2011
2014
2014
2015
2016
2017

CSSCSS ModulesVueBEM
styled-components CSS in JS
BEMModifier
1. 使WAI-ARIA
2. 使WAI-ARIA使
<button
type="button"
class="button"
data-level="primary"
aria-pressed="true"
>
Button
</button>
.button {
color: #333;
background-color: #f0f0f0;
border: #999 1px solid;
padding: .4em;
&[data-level="primary"] {
background-color: #fcc;
}
&[aria-pressed="true"] {
box-shadow: 2px 2px 4px #999 inset;
}
}
使CSS
<div
class="tooltip"
aria-hidden="false"
style="--top: 120px; --left: 40px"
>...</div>
.tooltip {
--top: 0;
--left: 0;
position: absolute;
top: var(--top);
left: var(--left);
}