首页 > 开发 > CSS > 正文

CSS3代码实例:用CSS修饰input内阴影

2024-07-11 09:01:40
字体:
来源:转载
供稿:网友

武林网(www.vevb.com)文章简介:CSS修饰input内阴影

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>网页教学网-CSS修饰input内阴影</title>
<style>
.search{width:200px;height:24px;padding:0;border:1px solid #ccc;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}
</style>
</head>
<body>
<input type="text" class="search">
</body>
</html>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表