1 2 3 4 |
H1
{
border: 3px dashed green;
}
|
1 2 3 4 |
<em>regular tag</em> <em class="special">special tag</em> <em>also regular tag</em> <em class="special">another special tag</em> |
1 2 3 4 5 6 7 8 9 10 11 |
<head>
<style>
em {
color: green;
border: 2px solid red;
}
.special {
color: red
}
</style>
</head>
|