CSS

CSS is a style sheet language used for describing the presentation of a document written in a markup language. A style sheet is a collection of rules that tells a web browser how to display a document written in HTML or XML.
CLICK HERE To solve more code-related solutions you face every day.

use text-transform:uppercase ul.myclass > li a{ text-transform:uppercase !important; } <ul class=”myclass”> <li><a href=”www.link.com”>stuff here</a></li> <li><a href=”www.link.com”>more stuff here</a></li> </ul> CLICK HERE to find out more related problems solutions.

Scroll to Top