0、初始化样式

初始化样式,非原创,仅供个人学习参考<link href="base.css">
/* CSS Document */html, body, div, span, object, iframe,h1, h2,h3, h4, h5, h6, p, blockquote, pre,abbr, address, cite, code,del, dfn,em, img, ins,kbd, q, samp,small, strong, sub, sup, var,b, i,dl, dt, dd,ol, ul, li,fieldset, form, label, legend,table, caption, tbody,tfoot,thead,tr, th, td,article, aside, canvas, details, figcaption,figure, footer, header, hgroup, menu, nav, section, summary,time, mark,audio, video {    margin:0;    padding:0;    border:0;    outline:0;    font-size:100%;    vertical-align:baseline;    background:transparent;    outline-style:none;/*FF*/}

body {    line-height:1;}

a{    margin:0;    padding:0;    border:0;    font-size:100%;    vertical-align:baseline;    background:transparent;

}a:hover,a:focus{    text-decoration:none;    bblr:expression(this.onFocus=this.blur());/*IE*/    outline-style:none;/*FF*/}table {    border-collapse:collapse;    border-spacing:0;}

input, select {    vertical-align:middle;}

/*css为clearfix,清除浮动*/.clearfix::before,.clearfix::after{    content: "";    height: 0;    line-height: 0;    display: block;    visibility: hidden;    clear: both;}.clearfix:after{clear:both;}.clearfix{    *zoom:1;/*IE/7/6*/}

原文地址:https://www.cnblogs.com/chwen1014/p/8777766.html

时间: 2024-10-11 01:07:12

0、初始化样式的相关文章

recent.css常用的页面初始化样式

<style> @charset "utf-8"; body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;} h1,h2,h3,h4,h5,h6{ font-weight: normal;} li { list-style: none; } img { border: non

通用初始化样式

通用初始化样式 ------- body{ margin: 0;padding: 0;font-family: "微软雅黑";overflow: hidden;} body,html{-webkit-text-size-adjust: none;width: 100%;height: 100%;} *{text-decoration: none;list-style: none;} img{border: 0px;} ul,li,dl,dd,dt,p,ol,h1,h2,h3,h4,h5

struct {0}初始化

#include <iostream> struct MyStruct { MyStruct(int a) { a = b = 0; } int a; int b; }; int main() { MyStruct my = {0};//列表初始化只适合非聚合结构体,所以这样不行,所以需要将上面的构造函数去掉,但发现把struct换成class还是不行的,莫非class天生就是聚合的? getchar(); return 0; }网上搜到的解释 4.1.3 聚合(aggregate) int

CSS初始化样式

为什么要初始化CSS? CSS初始化是指重设浏览器的样式.不同的浏览器默认的样式可能不尽相同,所以开发时的第一件事可能就是如何把它们统一.如果没对CSS初始化往往会出现浏览器之间的页面差异.每次新开发网站或新网页时候通过初始化CSS样式的属性,为我们将用到的CSS或html标签更加方便准确,使得我们开发网页内容时更加方便简洁,同时减少CSS代码量,节约网页下载时间. CSS初始化示例代码 /* css reset www.admin10000.com */ body,div,dl,dt,dd,u

PC端和移动端网页的初始化样式

pc端样式重置 *{ margin:0; padding:0;} body{ font-size:14px; font-family:微软雅黑;font-style:normal;} a{ text-decoration:none} a,a:hover{  transition:background 0.5s linear;-webkit-transition:background 0.5s linear;-moz-transition:background 0.5s linear;-o-tra

目前公司用到的PC端和移动端的初始化样式

pc端样式重置 *{ margin:0; padding:0;} body{ font-size:14px; font-family:微软雅黑;font-style:normal;} a{ text-decoration:none} a,a:hover{  transition:background 0.5s linear;-webkit-transition:background 0.5s linear;-moz-transition:background 0.5s linear;-o-tra

ecmall2.3.0 前后台样式等无效,导致前台页面显示不正常问题解决

问题一:按照安装手册安装及数据初始化后,前后台中文均出现乱码 解决方法:在upload/index.php 和 upload/admin/index.php 头上加上header("Content-type: text/html; charset=utf-8"); 设置utf8汉字编码,解决问题 问题二:前台页面在服务器fierfox下显示正常,但在别的pc上,样式没起作用 解决方法:可能网站初始化时,网站地址设为localhost.. 1.修改/etc/httpd/conf/http

css通用初始化样式

body{ margin: 0;padding: 0;font-family: "微软雅黑";overflow: hidden;}body,html{-webkit-text-size-adjust: none;width: 100%;height: 100%;}*{text-decoration: none;list-style: none;}img{border: 0px;}ul,li,dl,dd,dt,p,ol,h1,h2,h3,h4,h5{font-size: 12px;fon

tp5.0分页样式调控

基础的分页调用 /** * 控制器部分代码 */ //实例化模型 $areasModel=new Areas(); //分页数据集 $listarea=$areasModel->paginate($page); //分页显示输出 $page=$listarea->render(); //模板赋值 $this->assign('listarea',$listarea); $this->assign('page', $page); /** * 模板页面部分代码 */ {$page}//