css1

body {
    font: 100% Lucida Sans, Verdana;
    margin: 20px;
    line-height: 26px;
}

span {
    color: #4caf50;
}

.logo {
    font-family: fontawesome;
    font-size: 37px;
    letter-spacing: 3px;
    line-height: 1;
    padding-left: 2px;
    text-decoration: none;
}

.top {
    background-color: #ffffff;
    height: 50px;
    line-height: 0px;
    overflow: hidden;
    padding-top: 20px;
    position: relative;
    z-index: 1;
}

.nav {
    background-color: #5f5f5f;
    color: #f1f1f1;
    font-size: 17px;
    letter-spacing: 1px;
    position: relative;
    width: 99%;
    z-index: 2;
    margin:0,10,0,10;
    overflow:hidden;
    padding:5;
}

.wrapper {
    overflow: auto;
    position: relative;
}

.logoRight {
    float: right;
}

.alink {
  color: white;
  padding: 14px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
 }
 
 .active {
  color: Red;
  padding: 14px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
 }
 
.indexImg {
    width:33%;
    height:400px;
}

.album {
        margin: 5px;
    float: left;
    padding:15px;
    height:135px;
    width: 125px;
    text-align:center;
}

.content {
    width:90%;
    height:370px;
    margin-left:auto;
    margin-right:auto;"
}

.movie {
    float: left;
      width: 47%;
      padding:15px;
      height:130px;
}

.bottom {
    background-color: #f1f1f1;
    border: 1px solid #d4d4d4;
    font-size: 70%;
    line-height: 14px;
    padding: 10px;
    position:relative;
    text-align: center;
}

table {
    border-collapse: collapse;
    width: 99.8%;
}

th, td {
    text-align: left;
    padding: 8px;
}

tr:nth-child(even){background-color: #f2f2f2}

th {
    background-color: #4CAF50;
    color: white;
}

a {
    color: #000000;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

ul {
    background: grey;
    padding: 20px;
}

时间: 2024-11-05 02:37:17

css1的相关文章

CSS1,CSS2选择器详解

第一.CSS1选择器: 1.元素选择器(也叫标签选择器,是最基本的选择器) <style> html{background-color: red;} div{background-color: yellow;} </style> 2.ID选择器(id 选择器可以为标有特定 id 的 HTML 元素指定特定的样式. id 选择器以 "#" 来定义) <style> #boxl{color:blue;} </style> 2.1.结合元素的I

css-1

规范:文件的放置 1-三种样式---以div为例 1-1行内样式 <div style="height=100px;width=100px;border:1px solid red;"></div> 1-2内嵌式 ①在title下面写<style type="text/css"> div { height:100px; width:100px; border: solid 1px red; } ②在最下面的</body>

网页CSS1

样式的属性 1,背景与前景 1 background-color: //背景的颜色 2 3 background-image:url //背景图片 4 5 background-attachment:fixed; //背景固定不随字体滚动,scroll 背景随着字体滚动 6 7 background-repert:no-repeat; //图片不平铺, repeat平铺 repeat-x横向平铺 repeat-y纵向平铺 8 9 background-position:center; //背景居

2015年9月21号css1

一.border边框 border:1px solid #F00; border-style:dashed虚线 dotted点点点 边框样式 border-width:3px;边框宽度 border-color:#F00;边框颜色 还可以控制四个边的属性 border-top.border-bottom.border-left.border-right 二.背景 background-color:#F00; 背景颜色 background-image:url(../image/2.jpg);/*

html+css1(标签样式)

id:用id属性来为标签提供唯一的名称,这个就像我们每个人都有一个身份证号,这个身份证号是唯一标识我们的身份的,也是必须唯一的. <div id="student">学生信息</div> css样式 <style type="text/css">table tr td,th{border:1px solid #000;}</style>

css1—八种方式实现元素垂直居中

这里介绍实现元素垂直居中的方式,文章是参考了<css制作水平垂直居中对齐>这一篇文章. 1.行高和高度实现 这种方式实现单行垂直居中是很简单的,但是要保证元素内容是单行的,并且其高度是不变的,只要将“line-height”和“height”设置成一样的就可以了.这种方式局限性在于只有单行文本的元素才适用,多行元素是不适用的. html代码: <div class="vertical"> <span>aaa</span>content &

CSS3属性:word-break、word-wrap CSS1属性:white-space学习

一.word-break 定义: word-break属性规定自动换行的处理方法. 语法: word-break: normal | break-all | keep-all ----------------------------------------------------------------------------- normal:使用浏览器默认的换行规则. break-all:允许在单词内换行. keep-all:只能在半角空格或连字符处进行换行. 举例: HTML: <p cla

通过HTML和CSS1:1还原风暴英雄官方网站

<!--HTML代码--> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title><风暴英雄>官方网站_暴雪出品 明星汇聚 MOBA竞技新篇章</title> <link rel="shortcut icon" href="heroes.ico&quo

js判断浏览器类型

js判断浏览器类型  <script type="text/javascript" >     <!--   function getOs()   {       var OsObject = "";      if(isIE = navigator.userAgent.indexOf("MSIE")!=-1) {           return "MSIE";      }      if(isFiref