最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

css如何清除默认样式并设置公共样式

来源:动视网 责编:小采 时间:2020-11-02 22:15:15
文档

css如何清除默认样式并设置公共样式

css如何清除默认样式并设置公共样式:通常的清除默认样式:*{ margin:0; padding:0 } li{ list-style:none } img{ vertical-align:top; border:none }(推荐教程:CSS教程)设置默认字体body, button, input, select, textarea /* for ie */ { f
推荐度:
导读css如何清除默认样式并设置公共样式:通常的清除默认样式:*{ margin:0; padding:0 } li{ list-style:none } img{ vertical-align:top; border:none }(推荐教程:CSS教程)设置默认字体body, button, input, select, textarea /* for ie */ { f

通常的清除默认样式:

*{
 margin:0;
 padding:0
}
li{
 list-style:none
}
img{
 vertical-align:top;
 border:none
}

(推荐教程:CSS教程)

设置默认字体

body,
button, input, select, textarea /* for ie */ {
 font: 14px/1.5 tahoma, 5b8b4f53, sans-serif;
}
h1, h2, h3, h4, h5, h6 { font-size: 100%; font-weight: normal;}
address, cite, dfn, em, var { font-style: normal; } /* 将斜体扶正 */
code, kbd, pre, samp { font-family: courier new, courier, monospace; } /* 统一等宽字体 */
small { font-size: 12px; } /* 小于 12px 的中文很难阅读, 让 small 正常化 */
/** 重置列表元素 **/
ul, ol { list-style: none; }
/** 重置文本格式元素 **/
a { text-decoration: none; }
a:hover { text-decoration: underline; }
sup { vertical-align: text-top; } /* 重置, 减少对行高的影响 */
sub { vertical-align: text-bottom; }
/** 重置表单元素 **/
legend { color: #000; } /* for ie6 */
fieldset, img { border: 0; } /* img 搭车:让链接里的 img 无边框 */
button, input, select, textarea { font-size: 100%; } /* 使得表单元素在 ie 下能继承字体大小 */
/* 注:optgroup 无法扶正 */
/* 重置 HTML5 元素 */
article, aside, details, figcaption, figure, footer,header, hgroup, menu, nav, section,
summary, time, mark, audio, video {
 display: block;
 margin: 0;
 padding: 0;
}
mark { background: #ff0; }
/* 设置placeholder的默认样式 */
:-moz-placeholder {
 color: #ddd;
 opacity: 1;
}
::-moz-placeholder {
 color: #ddd;
 opacity: 1;
}
input:-ms-input-placeholder {
 color: #ddd;
 opacity: 1;
}
input::-webkit-input-placeholder {
 color: #ddd;
 opacity: 1;
}

select标签

select {
 border: none;
 appearance:none;
 -moz-appearance:none;
 -webkit-appearance:none;
 /*在选择框的最右侧中间显示小箭头图片*/
 background: url("http://ourjs.github.io/static/2015/arrow.png") no-repeat scroll right center transparent;
 padding-right: 14px;
}

重置表格元素

table {
border-collapse: collapse;
border-spacing: 0;
}

重置hr

hr {
 border: none;
 height: 1px;
}

清除< ol > < ul >的默认样式

ul, ol, { 
  margin: 0;
  padding: 0;
  list-style: n;
}

.button按钮

.button{
 border:0;
 background-color:none
 outline:none;
 -webkit-appearance: none;//用于IOS下移除原生样式
}

.< a >标签

a{
 text-decoration:none;
 color:#333;
}

< input >标签

input{
 border: none;
 appearance:none;
 -moz-appearance:none;
 outline:none;//input标签聚焦不出现默认边框:
 -webkit-appearance: none;//用于IOS下移除原生样式
}
//or:
input:focus{ outline:none; }//input标签聚焦不出现默认边框:
border: none; appearance:none; -moz-appearance:none; outline:none;//input标签聚焦不出现默认边框: -webkit-appearance: no

更多编程相关内容,请关注Gxlcms编程入门栏目!

文档

css如何清除默认样式并设置公共样式

css如何清除默认样式并设置公共样式:通常的清除默认样式:*{ margin:0; padding:0 } li{ list-style:none } img{ vertical-align:top; border:none }(推荐教程:CSS教程)设置默认字体body, button, input, select, textarea /* for ie */ { f
推荐度:
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top