- CSS 教程
- CSS - 教程
- CSS - 简介
- CSS - 语法
- CSS - 选择器
- CSS - 包含
- CSS - 度量单位
- CSS - 颜色
- CSS - 背景
- CSS - 字体
- CSS - 文本
- CSS - 图像
- CSS - 链接
- CSS - 表格
- CSS - 边框
- CSS - border-block 属性
- CSS - 边框内联
- CSS - 边距
- CSS - 列表
- CSS - Padding 属性
- CSS - 光标
- CSS - 轮廓
- CSS - 维度
- CSS - 滚动条
- CSS - 内联块
- CSS - 下拉列表
- CSS - visibility 属性
- CSS - Overflow 属性
- CSS - 清除修复
- CSS - float(浮点)
- CSS - 箭头
- CSS - resize 属性
- CSS - quotes 属性
- CSS - order 属性
- CSS - Position 属性
- CSS - hypens 属性
- CSS - :hover(悬停)
- CSS - display(显示)
- CSS - focus 属性
- CSS - zoom(缩放)
- CSS - translate 属性
- CSS - Height 属性
- CSS - hyphenate-character 属性
- CSS - Width 属性
- CSS - opacity 属性
- CSS - z-index 属性
- CSS - bottom 属性
- CSS - 导航栏
- CSS - 覆盖
- CSS - 表单
- CSS - 对齐
- CSS - 图标
- CSS - 图片库
- CSS - 注释
- CSS - 加载器
- CSS - Atrribute 选择器属性
- CSS - 运算器
- CSS - root
- CSS - 盒子模型
- CSS - 计数器
- CSS - Clip (Obsolete) 属性
- CSS - writing-mode 属性
- CSS - Unicode-bidi 属性
- CSS - min-content 属性
- CSS - 全部
- CSS - inset 属性
- CSS - isolation 属性
- CSS - overscroll-behavior 属性
- CSS - justify-items 属性
- CSS - justify-self 属性
- CSS - tab-size 属性
- CSS - pointer-event 属性
- CSS - place-content 属性
- CSS - place-items 属性
- CSS - place-self 属性
- CSS - max-block-size 属性
- CSS - min-block-size 属性
- CSS - mix-blend-mode 属性
- CSS - max-inline-size 属性
- CSS - min-inline-size 属性
- CSS - offset 属性
- CSS - accent-color 属性
- CSS - user-select 属性
- CSS 高级
- CSS - grid 属性
- CSS - Grid 布局
- CSS - flexbox
- CSS - vertical-align 属性
- css - positioning
- css - layers
- css - pseudo_classes
- CSS - 伪元素
- CSS - @ 规则
- CSS 滤镜 - text-effect 属性
- CSS 分页媒体
- CSS 打印
- CSS - 布局
- CSS - 验证
- CSS - 图像精灵
- CSS - !important
- CSS - 数据类型
- CSS3 教程
- CSS - 圆角
- CSS - 边框图像
- CSS - 多种背景
- CSS - 渐变
- CSS - box-shadow 属性
- CSS - box-decoration-break 属性
- CSS - caret-color 属性
- CSS - text-shadow 属性
- CSS - 2D 转换
- CSS - 3D 变换
- CSS - transition 属性
- CSS - 动画
- CSS - 多列布局
- CSS - 盒子大小调整
- CSS - 工具提示
- CSS - buttons
- CSS - 分页
- CSS - 变量
- CSS - 媒体查询
- CSS - 值函数
- CSS - 数学函数
- CSS - Mask 属性
- CSS - shape-outside 属性
- CSS - 样式图像
- CSS - 特异性
- CSS - 自定义属性
- CSS 响应式
- CSS - 响应式网页设计 (RWD)
- CSS - 响应式设计视口
- CSS - 响应式网格视图
- CSS - 响应式媒体查询
- CSS - 响应式图像
- CSS - 响应式视频
- CSS - 响应式框架
- CSS 引用
- CSS - 所有属性列表
- CSS - 颜色引用
- CSS - 浏览器支持参考
- CSS - 网页字体
- CSS 工具
- CSS - PX 到 EM 的转换
CSS - 表单
当您想从网站访问者那里收集一些数据时,需要 HTML 表单。它们具有供用户输入信息的输入字段、用于标识输入字段的标签以及用于提交表单或执行操作的按钮。
CSS可以用来使表单看起来不错。您可以使用CSS设置表单样式,以更改表单元素的外观,例如文本字段,复选框,单选按钮,选择菜单和提交按钮。
以下各节讨论了使用CSS设置表单样式的一些方法:
一个简单的 HTML 表单如以下代码所示:
<form>
<input type="text" id="username" name="username" placeholder="Username">
<input type="password" id="password" name="password" placeholder="password">
<textarea id="message" name="message" rows="4" placeholder="Message"></textarea>
<input type="submit" value="Submit">
</form>
以下是一些常见的CSS技术和属性,您可以使用它们来设置HTML表单的样式:
CSS 表单 - 字体和文本样式
您可以使用 CSS 属性(如 font-family、font-size、color 和 text-align)为表单元素中的文本设置样式,如下所示 -
input[type="text"],
input[type="password"],
textarea {
font-family: Arial, sans-serif;
font-size: 16px;
color: blue;
}
以下示例演示了这一点:
<html>
<head>
<style>
input[type="text"],
input[type="password"],
textarea {
font-family: Arial, sans-serif;
font-size: 16px;
color: blue;
}
label{
color:brown;
}
form{
display: grid;
}
</style>
</head>
<body>
<h2>Font and Text Styling</h2>
<form>
<input type="text" id="username" name="username" placeholder="Username">
<input type="password" id="password" name="password" placeholder="password">
<textarea id="message" name="message" rows="4" placeholder="Message"></textarea>
<input type="submit" value="Submit">
</form>
</body>
</html>
CSS 表单 - 设置元素边框和背景的样式
您可以使用 border、background-color 和 border-radius 等属性来控制表单元素的边框和背景。
input[type="text"],
input[type="password"],
textarea {
border: 1px solid red;
background-color: antiquewhite;
border-radius: 5px;
}
以下示例演示了这一点:
<html>
<head>
<style>
input[type="text"],
input[type="password"],
textarea {
border: 1px solid red;
background-color: antiquewhite;
border-radius: 5px;
}
label{
color:brown;
}
form{
display: grid;
}
</style>
</head>
<body>
<h2>Styling Form Element Borders and Backgrounds</h2>
<form>
<input type="text" id="username" name="username" placeholder="Username">
<input type="password" id="password" name="password" placeholder="password">
<textarea id="message" name="message" rows="4" placeholder="Message"></textarea>
<input type="submit" value="Submit">
</form>
</body>
</html>
CSS 表单 - 使用填充和边距
input[type="text"],
input[type="password"],
textarea {
padding: 10px;
margin: 5px 0;
}
以下示例演示了这一点:
<html>
<head>
<style>
input[type="text"],
input[type="password"],
textarea {
border: 1px solid red;
background-color: antiquewhite;
border-radius: 5px;
padding: 10px;
margin: 5px 0;
}
label{
color:brown;
}
form{
display: grid;
}
</style>
</head>
<body>
<h2>Using Padding and Margins In Forms</h2>
<form>
<input type="text" id="username" name="username" placeholder="Username">
<input type="password" id="password" name="password" placeholder="password">
<textarea id="message" name="message" rows="4" placeholder="Message"></textarea>
<input type="submit" value="Submit">
</form>
</body>
</html>
CSS 表单 - 焦点样式
您可以使用 :focus 伪类定义表单元素处于焦点状态时的样式。
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus {
border: 2px solid #007bff;
}
以下示例演示了这一点:
<html>
<head>
<style>
input[type="text"],
input[type="password"],
textarea {
border: 1px solid red;
background-color: antiquewhite;
border-radius: 5px;
padding: 10px;
margin: 5px 0;
}
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus {
border: 10px solid yellow;
}
label{
color:brown;
}
form{
display: grid;
}
</style>
</head>
<body>
<h2>Focus Styling In Forms</h2>
<p>Place the mouse in each of the input fields to see effect of focus styling</p>
<form>
<input type="text" id="username" name="username" placeholder="Username">
<input type="password" id="password" name="password" placeholder="password">
<textarea id="message" name="message" rows="4" placeholder="Message"></textarea>
<input type="submit" value="Submit">
</form>
</body>
</html>
CSS 表单 - 按钮样式
使用 CSS 设置表单按钮的样式。您可以更改按钮的背景颜色、文本颜色并添加悬停效果。
input[type="submit"] {
background-color: #007bff;
color: #fff;
padding: 10px 20px;
border: none;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #0056b3;
}
以下示例演示了这一点:
<html>
<head>
<style>
input[type="text"],
input[type="password"],
textarea {
border: 1px solid red;
background-color: antiquewhite;
border-radius: 5px;
padding: 10px;
margin: 5px 0;
}
input[type="submit"] {
background-color: #007bff;
color: #fff;
padding: 10px 20px;
border: none;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #0056b3;
}
label{
color:brown;
}
form{
display: grid;
}
</style>
</head>
<body>
<h2>Form Button Styling</h2>
<form>
<input type="text" id="username" name="username" placeholder="Username">
<input type="password" id="password" name="password" placeholder="password">
<textarea id="message" name="message" rows="4" placeholder="Message"></textarea>
<input type="submit" value="Submit">
</form>
</body>
</html>
CSS 表单 - 复选框和单选按钮样式
复选框和单选按钮很难设置样式,但您可以使它们在视觉上具有吸引力。
input[type="checkbox"],
input[type="radio"] {
margin-right: 5px;
vertical-align: middle;
}
以下示例演示了这一点:
<html>
<head>
<style>
form {
max-width: 300px;
margin: 0 auto;
}
label {
display: block;
margin-bottom: 5px;
font-size: 20px;
color: red;
}
input[type="radio"], input[type="checkbox"] {
margin-right: 5px;
vertical-align: middle;
}
</style>
</head>
<body>
<form>
<label>Radio Buttons: </label>
<input type="radio" name="gender" value="male"> Male
<input type="radio" name="gender" value="female"> Female
<label>Checkboxes:</label>
<input type="checkbox" name="lang" value="html"> HTML
<input type="checkbox" name="lang" value="css"> CSS
<input type="checkbox" name="lang" value="bootstrap"> Bootstrap
</form>
</body>
</html>
CSS 表单 - 表单布局
使用 CSS 来控制表单元素的布局。您可以使用 CSS Grid 或 Flexbox 等技术来处理更复杂的表单布局。
.form-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}
以下示例演示了一个简单的登录表单,用户可以在其中输入其登录信息并单击登录按钮以提交表单 -
<html>
<head>
<style>
.form-container {
max-width: 300px;
margin: 0 auto;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
background-color: #f2c3ee;
}
.form-container input[type="text"],
.form-container input[type="password"] {
width: 100%;
padding: 5px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 3px;
}
.form-container button[type="submit"] {
width: 100%;
padding: 10px;
background-color: #15a415;
color: #fff;
border: none;
border-radius: 3px;
}
.form-container button[type="submit"]:hover {
background-color: #e62b1e;
}
h1 {
color: #15a415;
text-align: center;
}
h2 {
color: #e62b1e;
text-align: center;
}
</style>
</head>
<body>
<div class="form-container">
<h1>Tutorialspoint</h1>
<h2>Login</h2>
<form>
<label for="username">Username:</label>
<input type="text" id="username" name="username" placeholder="username" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" placeholder="password" required>
<button type="submit">Login</button>
</form>
</div>
</body>
</html>
CSS 表单 - 框大小调整
要使所有表单元素的大小相同,可以将 box-sizing 属性设置为 border-box。此属性包括元素的宽度和高度的边框和填充,从而可以更轻松地一致地调整元素的大小。
这是一个例子 -
<!DOCTYPE html>
<head>
<style>
.box-sizing-element input,textarea,button {
width: 100%;
padding: 10px;
margin: 0;
box-sizing: border-box;
}
.normal-element input,textarea,button {
width: 100%;
padding: 10px;
margin: 0;
}
button{
background-color: #04AA6D;
border: none;
color: white;
padding: 16px 32px;
text-decoration: none;
margin: 4px 2px;
cursor: pointer;
}
</style>
</head>
<body>
<div class="normal-element">
<h3>Without box-sizing</h3>
<form>
<input type="text" id="name" name="name" placeholder="Enter your name">
<br>
<input type="email" id="email" name="email" placeholder="Email id">
<br>
<textarea id="message" name="message" rows="4" placeholder="Message"></textarea>
<br>
<button type="submit" value="Submit">Submit</button>
</form>
</div>
<div class="box-sizing-element">
<h3>With box-sizing</h3>
<form>
<input type="text" id="name" name="name" placeholder="Enter your name">
<br>
<input type="text" id="email" name="email" placeholder="Email id">
<br>
<textarea id="message" name="message" rows="4" placeholder="Message"></textarea>
<br>
<button type="submit" value="Submit">Submit</button>
</form>
</div>
</body>
</html>
CSS 表单 - 字段集和图例
以下示例演示如何设置 <fieldset> 和 <legend> 元素的样式。−
<html>
<head>
<style>
form {
width : 300px;
margin: 0 auto;
}
fieldset {
border: 1px solid #ccc;
border-radius: 5px;
padding: 10px;
}
legend {
font-weight: bold;
text-align: center;
color: rgb(15, 141, 15);
}
</style>
</head>
<body>
<form>
<fieldset>
<legend>Login</legend>
<label for="username">Username:</label>
<input type="text" id="username" name="username">
<br>
<label for="password">Password:</label>
<input type="password" id="password" name="password">
<input type="submit" value="Submit">
</fieldset>
</form>
</body>
</html>
CSS 表单 - 全角输入
要使输入字段占据其父容器的整个宽度,您可以将输入字段的 width 属性设置为 100%,如下所示 -
<html>
<head>
<style>
input.full-width-input {
width: 100%;
font-size: 16px;
color: #545c53;
}
label {
font-weight: bold;
font-size: 20px;
color: #268219;
}
</style>
</head>
<body>
<form>
<label for="email">Address: </label>
<input type="text" id="email" name="email" class="full-width-input" placeholder="Enter address..." required>
</form>
</body>
</html>
CSS 表单 - 彩色输入
以下示例显示了如何使用 background-color 属性向输入字段添加 background-color -
<html>
<head>
<style>
input.colored-input {
width: 100%;
font-size: 16px;
color: #545c53;
padding: 15px;
border: 3px solid #22d90e;
background-color: #93ea88;
}
label {
font-weight: bold;
font-size: 20px;
color: #268219;
}
</style>
</head>
<body>
<form>
<label for="add">Address: </label>
<input type="text" id="add" name="add" class="colored-input" placeholder="Enter address..." required>
</form>
</body>
</html>
CSS 表单 - 输入中的图像
以下示例演示了一个密码输入字段,左侧有一个锁定图标。此图标用于在用户界面中符号化密码输入字段 -
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<style>
.input-container {
position: relative;
width: 100%;
margin-bottom: 20px;
}
input.password-input {
width: 100%;
font-size: 16px;
color: #545c53;
padding: 15px 15px 15px 40px;
border: 2px solid #22d90e;;
}
.password-icon {
position: absolute;
top: 50%;
left: 15px;
transform: translateY(-50%);
font-size: 20px;
color: #22d90e;
}
</style>
</head>
<body>
<form class="input-container">
<i class="password-icon fas fa-lock"></i>
<input type="password" id="password" name="password" class="password-input" placeholder="password" required>
</form>
</body>
</html>
CSS 表单 - 带动画的输入
以下示例演示了输入字段在单击或聚焦时如何扩展以占据其容器的整个宽度 -
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<style>
.input-container {
position: relative;
width: 100%;
margin-bottom: 20px;
}
input.password-input {
width: 50%;
font-size: 16px;
color: #545c53;
padding: 15px 15px 15px 40px;
border: 2px solid #22d90e;;
}
input.password-input:focus {
width: 100%;
}
.password-icon {
position: absolute;
top: 50%;
left: 15px;
transform: translateY(-50%);
font-size: 20px;
color: #22d90e;
}
</style>
</head>
<body>
<form class="input-container">
<i class="password-icon fas fa-lock"></i>
<input type="password" id="password" name="password" class="password-input" placeholder="password" required>
</form>
</body>
</html>
CSS 表单 - 设置文本区域的样式
下面是一个文本输入区域的示例,允许用户输入较长的文本,例如评论或消息 -
<html>
<head>
<style>
textarea {
width: 100%;
height: 100px;
font-size: 16px;
color: #938b8b;
padding: 15px;
border: 3px solid #22d90e;
}
textarea:focus {
box-shadow: 0 0 10px #db59ab;
}
</style>
</head>
<body>
<form>
<textarea>Enter text here....</textarea>
</form>
</body>
</html>
CSS 表单 - 样式下拉菜单
以下示例演示如何设置默认情况下隐藏的下拉菜单的样式。当用户单击触发器元素时,下拉菜单将打开并显示项目列表 -
<html>
<head>
<style>
select {
width: 100%;
font-size: 16px;
color: #000000;
padding: 15px;
border: 3px solid #147309;
background-color: #93ea88;
}
</style>
</head>
<body>
<form>
<select aria-placeholder="Select Language">
<option value="lang" disabled selected>Select Language</option>
<option value="html">HTML</option>
<option value="css">CSS</option>
<option value="bootstrap">Bootstrap</option>
</select>
</form>
</body>
</html>
响应式表单布局
下面是一个简单的响应式表单布局示例。在不同设备上检查此表格以查看响应能力。
<html>
<head>
<style>
.container {
max-width: 400px;
margin: 0 auto;
padding: 20px;
background-color: #c5e08e;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
margin-bottom: 20px;
color: #34892b;
}
label {
display: block;
font-weight: bold;
font-size: 15px;
margin-bottom: 5px;
color: #f25820;
}
input[type="text"],
input[type="email"],
select {
width: 100%;
padding: 15px;
margin-bottom: 15px;
border: 2px solid #ccc;
border-radius: 10px;
background-color: #eff5f5;
}
input[type="submit"] {
width: 100%;
padding: 10px;
background-color: #216e2a;
color: #fff;
border: none;
font-size: 20px;
border-radius: 4px;
cursor: pointer;
}
textarea {
width: 100%;
height: 100px;
padding: 15px;
margin-bottom: 15px;
border: 2px solid #ccc;
border-radius: 10px;
background-color: #eff5f5;
}
input[type="radio"] {
margin-right: 5px;
vertical-align: middle;
margin-bottom: 10px;
}
input[type="submit"]:hover {
background-color: #44d115;
color: #000000;
}
</style>
</head>
<body>
<div class="container">
<h1>Registration Form</h1>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" placeholder="Enter Name..." required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="Enter Email Id..." required>
<label for="email">Address:</label>
<textarea>Address...</textarea>
<label>Gender: </label>
<input type="radio" name="gender" value="male"> Male
<input type="radio" name="gender" value="female"> Female
<label for="gender">Langauges:</label>
<select id="gender" name="gender">
<option value="lang" disabled selected>Select Gender</option>
<option value="male">Hindi</option>
<option value="female">Marathi</option>
<option value="other">English</option>
</select>
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>