You can set html tag style in css like this:
<div class="sample_style"></div>
.sample_style {
position:absolute;
...
}
You can do this in html tag directly like this:
<div style="position: absolute; ..."></div>
But what about before element?
You can do in css like .sample_style:before{} but how can i set this directly in html tag?