📜  ul 文字装饰 css 代码示例

📅  最后修改于: 2022-03-11 14:47:28.734000             🧑  作者: Mango

代码示例1
/* Remove `text-decoration` and setting the colour is easy */ 

#sidelinks a {
    color:black; 
    text-decoration:none;
} 

/* So is removing the dots */ 

#sidelinks ul { 
  list-style: none; /* <--- this right here */ 
  padding: 0; 
  margin: 0; 
} 

/* -GillesC */