wangchao.org
添加收藏
 
购物视频论坛博客自然风光美女图片王朝网络小游戏BT下载生活百科编程设计手机图片小说
 
化妆 | 音乐 | 影视 | 图书 | 英语 | 宠物 | 美食 | 旅游 | 养生 | 手机 | 数码 | 汽车 | 珠宝 | 美容 | 装修 | 厨房 | 科普 | 动物 | 植物 | 影音 | 百科 | 知道 | 词典
  
 
 您好! 您现在位于: 王朝网络 → 编程设计 → 《13种常用按钮、文本框、表单等CSS样式返回上一页 
 
1楼 

13种常用按钮、文本框、表单等CSS样式

  网上购物、在线购物、购物搜索 欢迎光临本站购买图书、影视、音乐、数码、百货,手机等商品。

  虽然CSS样式的学习需要我们动手多实践,需要多做案例,思致思考,但有时候注意资料的收集与整理也是非常重要的,在实际开发中往往会起到事半功倍的效果。
  一、按钮样式
  Example Source Code
  .buttoncss {
   font-family: "tahoma", "宋体";
   font-size:9pt; color: #003399;
   border: 1px #003399 solid;
   color:#006699;
   border-bottom: #93bee2 1px solid;
   border-left: #93bee2 1px solid;
   border-right: #93bee2 1px solid;
   border-top: #93bee2 1px solid;
   background-image:url(../images/bluebuttonbg.gif);
   background-color: #e8f4ff;
   cursor: hand;
   font-style: normal ;
   width:60px;
   height:22px;
  }
  二、蓝色按钮
  Example Source Code
  .bluebuttoncss {
   font-family: "tahoma", "宋体";
   font-size: 9pt; color: #003366;
   border: 0px #93bee2 solid;
   border-bottom: #93bee2 1px solid;
   border-left: #93bee2 1px solid;
   border-right: #93bee2 1px solid;
   border-top: #93bee2 1px solid;*/
   background-image:url(../images/blue_button_bg.gif);
   background-color: #ffffff;
   cursor: hand;
   font-style: normal ;
  }
  三、红色按钮
  Example Source Code
  .redbuttoncss {
   font-family: "tahoma", "宋体";
   font-size: 9pt; color: #0066cc;
   border: 1px #93bee2 solid;
   border-bottom: #93bee2 1px solid;
   border-left: #93bee2 1px solid;
   border-right: #93bee2 1px solid;
   border-top: #93bee2 1px solid;
   background-image:url(../images/redbuttonbg.gif);
   background-color: #ffffff;
   cursor: hand;
   font-style: normal ;
  }
  四、选择按钮
  Example Source Code
  .selectbuttoncss{
   font-family: "tahoma", "宋体";
   font-size: 9pt; color: #0066cc;
   border: 1px #93bee2 solid;
   border-bottom: #93bee2 1px solid;
   border-left: #93bee2 1px solid;
   border-right: #93bee2 1px solid;
   border-top: #93bee2 1px solid;
   background-image:url(../images/blue_button_bg.gif);
   background-color: #ffffff;
   cursor: hand;
   font-style: normal ;
  }
  五、绿色按钮
  Example Source Code
  .greenbuttoncss {
   font-family: "tahoma", "宋体";
   font-size: 9pt; color: #0066cc;
   border: 1px #93bee2 solid;
   border-bottom: #93bee2 1px solid;
   border-left: #93bee2 1px solid;
   border-right: #93bee2 1px solid;
   border-top: #93bee2 1px solid;
   background-image:url(../images/greenbuttonbg.gif);
   background-color: #ffffff;
   cursor: hand;
   font-style: normal ;
  }
  六、图像按钮
  Example Source Code
  .imagebutton{
   cursor: hand; /*改变鼠标形状 www.devdao.com*/
  }
  七、页面正文
  Example Source Code
  body {
   scrollbar-face-color: #ededf3;
   scrollbar-highlight-color: #ffffff;
   scrollbar-shadow-color: #93949f;
   scrollbar-3dlight-color: #ededf3;
   scrollbar-arrow-color: #082468;
   scrollbar-track-color: #f7f7f9;
   scrollbar-darkshadow-color: #ededf3;
   font-size: 9pt;
   color: #003366;
   overflow:auto;
  }
  Example Source Code
  td { font-size: 12px }
  th {
   font-size: 12px;
  }
  八、下拉选择框
  Example Source Code
  select{
   border-right: #000000 1px solid;
   border-top: #ffffff 1px solid;
   font-size: 12px;
   border-left: #ffffff 1px solid;
   color:#003366;
   border-bottom: #000000 1px solid;
   background-color: #f4f4f4;
  }
  九、线条文本编辑框
  Example Source Code
  .editbox{
   background: #ffffff;
   border: 1px solid #b7b7b7;
   color: #003366;
   cursor: text;
   font-family: "arial";
   font-size: 9pt;
   height: 18px;
   padding: 1px;
  }
  十、多行文本框
  Example Source Code
  .multieditbox{
   background: #f8f8f8;
   border-bottom: #b7b7b7 1px solid;
   border-left: #b7b7b7 1px solid;
   border-right: #b7b7b7 1px solid;
   border-top: #b7b7b7 1px solid;
   color: #000000;
   cursor: text;
   font-family: "arial";
   font-size: 9pt;
   padding: 1px;
  }
  十一、阴影风格的表单
  Example Source Code
  .shadow {
   position:absolute;
   z-index:1000;
   top:0px;
   left:0px;
   background:gray;
   background-color:#ffcc00;
   filter : progidximagetransform.microsoft.dropshadow(color=#ff404040,offx=2,offy=2,positives=true);
  }
  十二、只显一条横线的输入框
  Example Source Code
  .logintxt{
   border-right: #ffffff 0px solid;
   border-top: #ffffff 0px solid;
   font-size: 9pt;
   border-left: #ffffff 0px solid;
   border-bottom: #c0c0c0 1px solid;
   background-color: #ffffff
  }
  十三、没有边框的输入框
  Example Source Code
  .noneinput{
   text-align:center;
   width:99%;height:99%;
   border-top-style: none;
   border-right-style: none;
   border-left-style: none;
   background-color: #f6f6f6;
   border-bottom-style: none;
  }

  虽然CSS样式的学习需要我们动手多实践,需要多做案例,思致思考,但有时候注意资料的收集与整理也是非常重要的,在实际开发中往往会起到事半功倍的效果。 一、按钮样式 Example Source Code .buttoncss { font-family: "tahoma", "宋体"; font-size:9pt; color: #003399; border: 1px #003399 solid; color:#006699; border-bottom: #93bee2 1px solid; border-left: #93bee2 1px solid; border-right: #93bee2 1px solid; border-top: #93bee2 1px solid; background-image:url(../images/bluebuttonbg.gif); background-color: #e8f4ff; cursor: hand; font-style: normal ; width:60px; height:22px; } 二、蓝色按钮 Example Source Code .bluebuttoncss { font-family: "tahoma", "宋体"; font-size: 9pt; color: #003366; border: 0px #93bee2 solid; border-bottom: #93bee2 1px solid; border-left: #93bee2 1px solid; border-right: #93bee2 1px solid; border-top: #93bee2 1px solid;*/ background-image:url(../images/blue_button_bg.gif); background-color: #ffffff; cursor: hand; font-style: normal ; } 三、红色按钮 Example Source Code .redbuttoncss { font-family: "tahoma", "宋体"; font-size: 9pt; color: #0066cc; border: 1px #93bee2 solid; border-bottom: #93bee2 1px solid; border-left: #93bee2 1px solid; border-right: #93bee2 1px solid; border-top: #93bee2 1px solid; background-image:url(../images/redbuttonbg.gif); background-color: #ffffff; cursor: hand; font-style: normal ; } 四、选择按钮 Example Source Code .selectbuttoncss{ font-family: "tahoma", "宋体"; font-size: 9pt; color: #0066cc; border: 1px #93bee2 solid; border-bottom: #93bee2 1px solid; border-left: #93bee2 1px solid; border-right: #93bee2 1px solid; border-top: #93bee2 1px solid; background-image:url(../images/blue_button_bg.gif); background-color: #ffffff; cursor: hand; font-style: normal ; } 五、绿色按钮 Example Source Code .greenbuttoncss { font-family: "tahoma", "宋体"; font-size: 9pt; color: #0066cc; border: 1px #93bee2 solid; border-bottom: #93bee2 1px solid; border-left: #93bee2 1px solid; border-right: #93bee2 1px solid; border-top: #93bee2 1px solid; background-image:url(../images/greenbuttonbg.gif); background-color: #ffffff; cursor: hand; font-style: normal ; } 六、图像按钮 Example Source Code .imagebutton{ cursor: hand; /*改变鼠标形状 [url=http://www.devdao.com*/]www.devdao.com*/[/url] } 七、页面正文 Example Source Code body { scrollbar-face-color: #ededf3; scrollbar-highlight-color: #ffffff; scrollbar-shadow-color: #93949f; scrollbar-3dlight-color: #ededf3; scrollbar-arrow-color: #082468; scrollbar-track-color: #f7f7f9; scrollbar-darkshadow-color: #ededf3; font-size: 9pt; color: #003366; overflow:auto; } Example Source Code td { font-size: 12px } th { font-size: 12px; } 八、下拉选择框 Example Source Code select{ border-right: #000000 1px solid; border-top: #ffffff 1px solid; font-size: 12px; border-left: #ffffff 1px solid; color:#003366; border-bottom: #000000 1px solid; background-color: #f4f4f4; } 九、线条文本编辑框 Example Source Code .editbox{ background: #ffffff; border: 1px solid #b7b7b7; color: #003366; cursor: text; font-family: "arial"; font-size: 9pt; height: 18px; padding: 1px; } 十、多行文本框 Example Source Code .multieditbox{ background: #f8f8f8; border-bottom: #b7b7b7 1px solid; border-left: #b7b7b7 1px solid; border-right: #b7b7b7 1px solid; border-top: #b7b7b7 1px solid; color: #000000; cursor: text; font-family: "arial"; font-size: 9pt; padding: 1px; } 十一、阴影风格的表单 Example Source Code .shadow { position:absolute; z-index:1000; top:0px; left:0px; background:gray; background-color:#ffcc00; filter : progidximagetransform.microsoft.dropshadow(color=#ff404040,offx=2,offy=2,positives=true); } 十二、只显一条横线的输入框 Example Source Code .logintxt{ border-right: #ffffff 0px solid; border-top: #ffffff 0px solid; font-size: 9pt; border-left: #ffffff 0px solid; border-bottom: #c0c0c0 1px solid; background-color: #ffffff } 十三、没有边框的输入框 Example Source Code .noneinput{ text-align:center; width:99%;height:99%; border-top-style: none; border-right-style: none; border-left-style: none; background-color: #f6f6f6; border-bottom-style: none; }

 
标签: 13  CSS  常用  按钮  文本  样式  表单  
 
您可以将本页贴到其他网站
UBB代码HTML代码
 
 
 
 

 
 
 
 
 更多内容
 ·input的Css样式 ·最常用的12种CSS BUG解决方法与技 ·用CSS等比例缩放图片 ·IE下div边框显示有残缺
 ·IE6 IE7 FF CSS HACK ·IE6支持PNG格式图片的CSS滤镜写法 ·从SQL Server中导入/导出Excel的 ·asp将数据导入excel后,中文出现
 ·Oracle 10g使用RMAN创建physical ·讲解DBMS_STATS的分析表与备份分 ·Oracle、SQL Server中如何锁定DB ·教你快速确定SQL Server栏中的最
 ·数据库管理员必须了解的MySQL企业 ·MySQL事件调度器Event Scheduler ·疑难解答:怎样使用Access数据库 ·实例讲解Access数据库在线压缩的
 ·Photoshop制作逼真的不锈钢杯(1) ·Flash绘制明媚夏日海滩(1) ·Virtual PC:虚拟磁盘也需要压缩 ·DIY一个漂亮的Word文本框
 ·用批处理脚本实现自动磁盘碎片整 ·快速清除Photoshop CS3捆绑的Bon ·Linux系统下挂载Windows分区的方 ·堵住电脑中的Access漏洞 拒绝恶意
 
 
 
最新评论  点此查看所有评论
 
 
 
 
发表评论(支持UBB码)


验证码:  
 
 
 
© 2005- 王朝网络 版权所有