Google News
logo
CSS - Interview Questions
What are navigation bars in CSS?
By using navigation bars we can make an ordinary HTML page into a user-specific and more dynamic web page. Basically, it is a list of links, hence use of <ul> and <li> elements makes the perfect sense.
 
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
Advertisement