CSS具体设置

html-css011

CSS具体设置,第1张

圆点、虚线效果

<style>

li{

list-style-type:"circle"

border-bottom: "1px dashed black"

}

</style>

矩形、实线

<style>

li{

list-style-type:"square"

border-bottom: "1px solid black"

}

</style>

望采纳!

#main ul{margin:0padding:0 10pxlist-style-type: none} 这句话对id为main的里面的ul起作用。

margin:7px 0 这句话的意思是 上边距:7px; 右边距:0px;下边距:7px;左边距:0px;。