Category Archives: CSS

CSS for Box Shadow

div { box-shadow: 10px 10px 5px #888888; }

Posted in CSS | Leave a comment

Centre Aligning ul with fluid width using css

If you have your site navigation in ul, li elements and seeking to center align the items to the center of the screen, here is the quick css for that ul.nav{ list-style-type:none; margin:0 auto; display:table; } ul.nav li{ list-style-type:none; display:table-column; … Continue reading

Posted in CSS | Leave a comment