Posts by Fabiano Rocke • 61 points
2 posts
-
6
votes9
answers37388
viewsA: What should I use in CSS, id, or class?
Use ID when you want CSS properties to be directed to only one element. Use Classes when you want the same properties for a grade of elements. ID is referenced in the CSS via # and Classes through…
-
-1
votes6
answers19014
viewsA: I want to align my menu to the center
Draw your menu inside a div , as below and play the menu style for margin:"auto" <div style="text-align: center;"> <ul id="menu" style="margin: 0 auto;"> "seu menu" </ul>…