CSS - Style a Website
This course covers the basics of styling a website using CSS. Work your way through the videos/articles and I'll teach you everything you need to know to style a basic website!

Display & Floats

Lesson 5
Author : GOUP
Last Updated : September, 2020


Code

Copy<ul style="float:left; background-color:lightblue;">
     <li style="display:inline;">Home</li>
     <li style="display:inline;">About</li>
     <li style="display:inline;">Contact Us</li>
     <li style="display:inline;">Blogs</li>
</ul>

<p>You can use the display and float CSS attributes to change the way that element on your website are displayed on the screen</p>