Generated Content with PX?
by James Doyle
HTML
<div data-width="100px"></div>
CSS
div {
height: 200px;
background: red;
display: block;
width: attr(data-width);
}
div:after {
content: attr(data-width);
}
by James Doyle
<div data-width="100px"></div>
div {
height: 200px;
background: red;
display: block;
width: attr(data-width);
}
div:after {
content: attr(data-width);
}