css设置input文本框样式代码实例_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:30:48
Original
2056 people have browsed it

css设置input文本框样式代码实例:
使用css设置input元素的样式是最为常用的操作之一,当然也是最为基础的操作,可能对于刚刚接触css的朋友还不够熟悉,下面就通过一段简单的代码历史演示一下如何设置文本框的样式,当然这个演示可能并不是特别的美观,这里的目的也只是起到一个演示作用,代码如下:

<!DOCTYPE html><html><head><meta charset="utf-8"><meta name="author" content="http://www.softwhy.com/" /><title>蚂蚁部落</title><style type="text/css"> .txt{  width:200px;  height:18px;  border-top:1px solid green;  border-left:1px solid green;  background-color:#CCC;  color:blue;}</style> </head> <body> <input type="text" class="txt" value="蚂蚁部落欢迎您" /></body> </html>
Copy after login

以上代码对文本框进行了设置,下面介绍一下设置项目:
1.使用width可以设置文本框的宽度。
2.使用height可以设置文本框的高度。
3.border-top和border-left可以设置文本框的顶部或者左部的边框样式。
4.background-color设置文本框的背景颜色。
5.color设置文本框中文本的内容。
相关阅读:
1.width属性可以参阅CSS的width属性一章节。
2.height属性可以参阅CSS的height属性一章节。
3.border-top属性可以参阅CSS的border-top属性一章节。 
4.border-left属性可以参阅CSS的border-left属性一章节。 
5.background-color属性可以参阅CSS的background-color属性一章节。 
6.color属性可以参阅CSS的color属性一章节。

原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=11764

更多内容可以参阅:http://www.softwhy.com/divcss/

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!