时间:2023-03-06来源:系统城装机大师作者:佚名
普通的显示数据的时候,ul就是项目列表,li就是列表项。可以用来显示数据。如果用于DIV+CSS布局的话,ul+li可以替换表格的作用,具体的设置,如果宽度高度、行间距、背景边框等需要配合CSS一起设置。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> < html xmlns = "http://www.w3.org/1999/xhtml" > < head > < meta http-equiv = "Content-Type" content = "text/html; charset=utf-8" /> < title >做导航</ title > < style type = "text/css" > #menu{ width:1000px; height:35px; float:right; margin:0px; clear:both; vertical-align:bottom; } #ul li{ list-style-type:none; /*去掉项目符号的,比如你用了< ul >< li ></ li >< li ></ li ></ ul >默认的li里边的字是有列表符号的,小圆点。这个list-style-type: none就是不要列表符号*/ clear:both; width:100px; display:inline; /*li {display: inline} 让 li 不再独占一行, 宽度上只会得到必要的而不是占有所在容器的全宽*/ font-size: larger; text-decoration:none; } a{ text-decoration:none; /*去掉下划线*/ } </ style > </ head > < body > < div id = "menu" > < ul id = "ul" > < li >< a title = "" href = "http://localhost:1435/BookShop/index.aspx" >首页 </ a ></ li > < li >< a title = "" href = "http://localhost:1435/BookShop/hybooks.aspx" >行业图书 </ a ></ li > < li >< a title = "" href = "http://localhost:1435/BookShop/Clothing.aspx" >服饰潮流 </ a ></ li > < li >< a title = "" href = "http://localhost:1435/BookShop/" >美容会所 </ a ></ li > < li >< a title = "" href = "http://localhost:1435/BookShop/" >妈咪宝贝 </ a ></ li > < li >< a title = "" href = "http://localhost:1435/BookShop/" >礼品书籍 </ a ></ li > < li >< a title = "" href = "http://localhost:1435/BookShop/" >新闻资讯 </ a ></ li > < li >< a title = "" href = "http://localhost:1435/BookShop/" >用户留言 </ a ></ li > < li >< a title = "" href = "http://localhost:1435/BookShop/" >联系我们 </ a ></ li > </ ul > </ div > </ body > </ html > |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> < html xmlns = "http://www.w3.org/1999/xhtml" > < head > < meta http-equiv = "Content-Type" content = "text/html; charset=utf-8" /> < title ></ title > < style type = "text/css" > </ style > </ head > < body > < div >默认是竖排,并且带圆点 < ul > < li >hello</ li > < li >hello</ li > < li >hello</ li > < li >hello</ li > </ ul > </ div > </ body > </ html > |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> < html xmlns = "http://www.w3.org/1999/xhtml" > < head > < meta http-equiv = "Content-Type" content = "text/html; charset=utf-8" /> < title ></ title > < style type = "text/css" > </ style > </ head > < body > < div > < ul > < li style = "list-style:none;" >去掉圆点</ li > < li style = "display:inline;" >hello</ li > < li >hello</ li > < li style = "display:inline;" >hello</ li > </ ul > </ div > </ body > </ html > |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> < html xmlns = "http://www.w3.org/1999/xhtml" > < head > < meta http-equiv = "Content-Type" content = "text/html; charset=utf-8" /> < title >无标题文档</ title > < style type = "text/css" > #myul li{ float:left; width:100px; } </ style > </ head > < body > <!--制作表格的原理,ul宽度为300px,li宽度为100px,则成三列--> < div style = "text-align:center;background:#eef" > < ul id = "myul" style = "width:300px;background:#eee" > < li >hello</ li > < li >hello</ li > < li >hello</ li > < li >hello</ li > < li >hello</ li > < li >hello</ li > < li >hello</ li > < li >hello</ li > < li >hello</ li > </ ul > </ div > </ div > </ body > </ html > |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> < html xmlns = "http://www.w3.org/1999/xhtml" > < head > < meta http-equiv = "Content-Type" content = "text/html; charset=utf-8" /> < title >无标题文档</ title > < style type = "text/css" > #myul li{ float:left; width:100px; } </ style > </ head > < body > <!--横向的方法,如果要居中,需要设置宽度才可以,这个宽度要和里面的li总长度一样。--> < div style = "text-align:center;background:#def" > < ul id = "myul" style = "width:500px;background:#eee;" > < li >hello</ li > < li >hello</ li > < li >hello</ li > < li >hello</ li > < li >hello</ li > </ ul > </ div > </ body > </ html > |
到此这篇关于html中ul和li标签的用法详解的文章就介绍到这了
2023-03-06
dw调节一个角的角度代码技巧 HTML怎么角度代码调节一个角的角度?2022-12-06
dw制作虚线圆圈的技巧 html用代码制作虚线框怎么做?2022-09-12
HTML静态页面获取url参数和UserAgent的实现web应用开发使用svg图片,总结了下,可以有如下4种方式: 1. 直接插入页面。 2. img标签引入。 3. css引入。 4. object标签引入。...
2022-09-12
主要介绍了巧用 -webkit-box-reflect 倒影实现各类动效(小结),文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值...
2021-04-22