Description | Example 1 | Example 2 | Example 3 |
---|---|---|---|
Right to Left, RTL | html[lang="ar"] body {
direction: RTL!important;
text-align: right!important;
}
html[lang="ar"] .left {
text-align: right!important;
} | ||
Left to Right, LTR | html[lang="en"] body {
direction: LTR!important;
text-align: left!important;
}
html[lang="en"] .right {
text-align: left!important;
} | ||
Bullet Not showing | .category-press-releases li { list-style-type: disc !important; } | ||
Hide Header on Mobile | @media only screen and (max-width: 600px) { #masthead, .footer {display: none; } } | ||
No Wrapping, One Line, Same Line, No Break | <span class="nowrap">No one can wrap us</span> | ||
Hyperlink color - External | <html> | <a href="https://sjnotebook.com" style="color: red">Team</a> | |
HyperLink color - Internale | <html> <head> <title>HTML Link Color</title> </head> <body> <h2>About</h2> <p> Using <a href="/quotes-inspiration.htm style="color: red">wordpress</a> Makes life easier </p> </body> </html> | <a href="/2022/02/quotes-inspiration.htm" style="color: red">Team</a> | |
Hide Header on Mobile | @media only screen and (max-width: 600px) {
#masthead, .footer {display: none; }
} | ||
Center, Middle | <center>center this word or paragraph or sentence</center> |