HTML CSS examples for CSS Widget:Nav bar image
Display Logo and Nav on same bar CSS
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> div {<!-- w w w .j a v a 2 s. c o m--> display:inline-block; background:blue; width:51px; } ul { display:inline-block; list-style:none; background:orange; } ul li { display:inline-block; } </style> </head> <body> <div> </div> <ul> <li> <a href="#">Lorem </a> </li> <li> <a href="#">Lorem </a> </li> <li> <a href="#">Lorem </a> </li> <li> <a href="#">Lorem </a> </li> </ul> </body> </html>