使用 CSS 为表单输入添加背景颜色

ID:13697 / 打印

使用 css 为表单输入添加背景颜色

要向表单输入添加背景颜色,请使用background-color属性。

您可以尝试运行以下代码实现表单的背景颜色属性

示例

现场演示

<!DOCTYPE html> <html>    <head>       <style>          input[type=text] {             width: 100%;             padding: 10px 15px;             margin: 5px 0;             box-sizing: border-box;             background-color: gray;          }       </style>    </head>    <body>       <p>Fill the below form,</p><p><span>立即学习</span>“<a href="https://pan.quark.cn/s/cb6835dc7db1" style="text-decoration: underline !important; color: blue; font-weight: bolder;" rel="nofollow" target="_blank">前端免费学习笔记(深入)</a>”;</p>       <form>          <label for = "subject">Subject</label>          <input type = "text" id = "subject" name = "sub">          <label for = "student">Student</label>          <input type = "text" id = "student" name = "stu">       </form>    </body> </html>
上一篇: 使用 CSS 淡入左侧动画效果
下一篇: SASS 中的最后一个子级和最后一个类型选择器

作者:admin @ 24资源网   2024-10-18

本站所有软件、源码、文章均有网友提供,如有侵权联系308410122@qq.com

与本文相关文章

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。