View Single Post
Old Today, 03:51 AM   #10
hobnail
Running with scissors
hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.
 
Posts: 1,593
Karma: 14328510
Join Date: Nov 2019
Device: none
Just like any other tag, you can style it with css.

Code:
article {
    font-family: sans-serif;
}
If you want it to act like a div, add display:block.

Code:
article {
    font-family: sans-serif;
    display: block;
}
hobnail is offline   Reply With Quote