css设置列表项目类型为无

html-css08

css设置列表项目类型为无,第1张

使用sublime_text软件设置,操作步骤如下:

1.首先需要新建一个06.html。2.定义一个html5标准声明。3.输入html网页的结构。4.添加一个ul列表后添加style标签,把列表设为没有格式。5运行网页查看效果

letter-spacing 属性值:normal | <length>初始值:normal 适用于:所有元素 继承:是 百分比值:不适用 “letter-spacing”属性定义了每一个字符之间的额外间距,该属性值必须以长度为单位,且正负值都是允许的。 例如下例: <HTML><head><title>CSS Demo</title><style type="text/css"><!-- H1{letter-spacing:1em} P{letter-spacing:-.1em} --></style></head><body><H1>This is wide headline</H1><P>This is text with negtive letter-spacing. </body></HTML>text-decoration 属性值:none | [underline || overline || line-through || blink] 初始值:none 适用于:所有元素 继承:否 百分比值:不适用 这个属性能够定义元素中文字的“装饰”样式,这些样式总共有五种形式。 none 无 underline 下划线 overline 上划线 line-through 删除线 blink 闪烁vertical-align 属性值:baseline | sub | super | top | text-top | middle | bottom | text-bottom | <percentage>初始值:baseline 适用于:行内元素 继承:否