初识CSS
表单认证三种: placeholder
required
pattern
input类型的文本框提供一种提示(hint)
可以描述文本框期待用户输入何种内容
提示语默认显示,当文本框中输入内容时提示语消失
适合于input标签:text、search、url、email和password等类型
<input type=“search” name="<input type=“search” name=“sousuo” 索的关键字"/>
CSS的概念
Cascading Style Sheet 级联样式表
CSS基本语法结构:
h1 {
font-size:12px;
color:#F00;
}
style标签:
<style type="text/css">
h1 {
font-size:12px;
color:#F00;
}
</style>
css样式:行内样式
<h1 style="color:red;">style属性的应用</h1>
<p style="font-size:14px; color:green;">直接在HTML标签中设置的样式</p>
内部样式表
<style>
h1{color: green; }
</style>
外部样式表
<head>
……
<link href="style.css" rel="stylesheet" type="text/css" />
……
</head>
css3基本选择器:
标签选择器
类选择器
ID选择器