CSS
Royi666
听一遍不如看一遍,
看一遍不如做一遍,
做一遍不如讲一遍。
展开
-
CSS的经验
1. Style和Class的优先度:(颜色) Style中的filter > Class中的filter > Style中的BackgroundColor 2.css中的 . 和 # . 是class: .ffstyle{ ... }在aspx中,用class="ffstyle" 调用 # 是id选择器标志: #ffstyle{ ... }在aspx中,用id="ffst原创 2016-07-09 23:10:11 · 280 阅读 · 0 评论 -
CSS重写Button的图片
#button{ display:block; width:100px; height:30px; padding:0; border:0; background:url(submit.png) no-repeat left top; text-indent:-9898px; font-size:0px; l原创 2016-07-17 12:11:42 · 948 阅读 · 0 评论 -
CSS的经验
1.CSS元素: A.B C{ ... }A是最外面的tag B是A里面的某个class C是A里面的tag 例: #D:focus{ ... }tag的ID是D的CSS focus是D中的某个动作时的CSS 注意:[.]是class,[#]是ID,空格是下一层tag原创 2016-07-17 12:19:41 · 282 阅读 · 0 评论 -
改变 input file 样式的两种方法
改变 input file 样式(input 文件域)是很多前端朋友经常遇到的头疼问题,今天推荐两种改变 input file 样式的两种常用方法: 方法一: 也可以写成这样: #input1{border:1px solid #0000FF} #btn1{width:70px;height:21px;font-size转载 2016-07-08 10:45:30 · 5736 阅读 · 0 评论 -
JAVA WEB 浏览器兼容问题汇总
首先谈一下浏览器,虽然现在ie依然是浏览器市场的老大,大约占有67%的份额,但是由于其各方面的欠缺,用户开始选择其他浏览器作为自己浏览网页的主要 工具,比如firefox、theworld、maxthon、chrome、opera等等,在用户使用比较多的浏览器中,分为2大派系 - ie内核和非ie内核,像theworld、maxthon、greenbrower等等都属于ie内核,而firefo转载 2016-07-08 10:47:56 · 2677 阅读 · 0 评论