li标签的使⽤及样式li标签的使⽤
在CSS ul样式中输⼊:
list-style-type:XXX;
none不使⽤项⽬符号
1 none ⽆符号
2 disc实⼼圆,默认值
3 circle空⼼圆
4 square实⼼⽅块
5 decimal阿拉伯数字
6 lower-roman⼩写罗马数字
7 upper-roman⼤写罗马数字
8 lower-alpha⼩写英⽂字母
9 upper-alpha⼤写英⽂字母
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"content="width=device-width, initial-scale=1.0">
<title>li标签的使⽤</title>
<style>
ul{
list-style-type: none;
}
</style>
</head>
<body>
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
html ul标签</ul>
</body>
</html>
多个li标签横着显⽰,只需在CSS样式中,对li元素添加float: left;
li {
float: left;
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。