Certified ASP.NET Programmer Learning Resources Making a horizontal list with flow

Learning Resources
 

Making a horizontal list with flow


Style rules are important to the web page layout as it aligns the items. Basic formatting to the ListView elements can be added as
1. Open the Source view.
2. Add or edit in the area

{
display: inline;
float: left;
}

The display:inline and  float:left if applied to the list items (

  • ) changes it from a vertical to a horizontal display.

     

  •  For Support