简体   繁体   中英

How can I avoid a list bullet to appear?

I am working on a website. In the header bar, I have included some contact information.

For some reason the first field (name field with my address in it) has a bullet before it. On Chrome, this displays before the address, on IE and Edge it displays to the left of the main content area in the blue. I cannot figure out how to eliminate this.

You can use

ul {
  list-style: none;
}

for that. list-style: none removes all list stylings.

Also maybe check if your markup is valid. maybe there is a missing, closing tag

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM