html,css学习(2)

2.列表标签

无序:<ul>(里面只能放li标签)

<li>任意</li>

</ul>

有序:<ol>(里面只能放li标签)

<li></li>

</ol>

自定义列表:<dl>(里面只能放dt,dd标签,这两者属于并列关系,1个dt有多个dd,可以有多组dt)

<dt>名词1</dt>

<dd>解释</dd>

</dl>

3.表单标签:<form(表单域) action(传送到后台处理)="网址" method(提交方式)="" name="" >

<input type="属性" name="相同名字可以多选一" value="默认显示">

<select>

<option></option>

</select>

<textarea>

</textarea>

</from>

CSS

语法规范:<head>

<style>

选择器h1{

样式;

color: 颜色;

font-size: 大小px;

}

.类名 {

color: ;

}

</style>

</head>

<body>

<标签 class="类名"></标签>

<div class="类名"></div>

</boby>


html,css学习(2)
http://localhost:8090//archives/html-cssx
作者
卓慧琪
发布于
2025年09月29日
许可协议