css样式属性

css样式属性比HTML用标签来添加方便很多,样式也比较多样。不过需要记得东西就更多了。

.d1 { width: 100px; height: 30px; border: 1px solid black; text-align: center; line-height: 30px }
.d1:hover { background-color: greenyellow; color: red; opacity: 0.5 }
a { text-decoration: none; color: black }
.d2 { width: 100px; height: 100px; border: 1px solid black; position: relative }
.d2 div { width: 30px; height: 40px; border: 1px solid black; position: relative }
#xxx { width: 30px; height: 20px; display: none }
.d2:hover #xxx { color: red }
ul { list-style-image: url("../img/QQ%E5%9B%BE%E7%89%8720170711172838.gif") }
ul li { width: 50px }

按 钮

ABCD

1234

  • 1
  • 2
  • 3
  • 4

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
.d1{
width: 100px;
height: 30px;
border: 1px solid black;
text-align: center;
line-height: 30px;
/*圆角*/
border-radius: 10px;
}
.d1:hover{
background-color: greenyellow;
color: red;
/*渐变效果*/
transition: 1s;
/*阴影*/
box-shadow: 5px 5px 5px black;
text-shadow: 2px 2px 2px black;
/*旋转*/
/*transform: rotate(5deg);*/
/*3D旋转*/
transform: rotateY(360deg);
/*平移*/
/*margin-left:10px;*/
/*半透明*/
opacity: 0.5;
}
a{
text-decoration: none;
color: black;
}
.d2{
width: 100px;
height: 100px;
border: 1px solid black;
position: relative;
}
.d2 div{
width:30px;
height: 40px;
border: 1px solid black;
position: relative;
}
#xxx{
width: 30px;
height: 20px;
/*隐藏占用位置*/
/*visibility:hidden;*/
/*隐藏不占用位置*/
display: none;
}
.d2:hover #xxx{
color: red;
}
/*列表常用样式*/
ul{
/*list-style:none;*/
list-style-image: url(../img/QQ图片20170711172838.gif);
}
ul li{
/*float:left*/
width: 50px;
}
</style>
</head>
<body>
<a href="#"><div class="d1">按&nbsp;钮</div></a>
<div class="d2">
<div id="xxx">ABCD</div>
<div>1234</div>
</div>
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
</ul>
</body>
</html>

时间: 2024-11-08 17:29:22

css样式属性的相关文章

快速记住CSS样式属性单词及输入HTML+CSS的方法

快速记住CSS样式属性单词及输入HTML+CSS的方法,DIVCSS5介绍一种快速输入HTML代码.快速输入CSS样式英文单词与样式值输入方法.降低英文单词代码输入错误概率,提升输入代码速度.DW软件输入CSS和HTML的终极用法(非面板输入法). DIVCSS5教大家一种快速记住CSS样式属性单词及用法的方法,告别死记硬背才是硬道理. CSS样式布局中使用的CSS样式英文单词,不需要死记硬背,会使用认识,知道长什么样即可.在DIV CSS布局开发中对于是否会拼写CSS属性单词关系不大,会使用.

如何为要被打印的内容设置CSS样式属性

如何为要被打印的内容设置CSS样式属性:有时候我们要打印的内容也是需要美观度的,并不希望太原汁原味了,所以要对其进行一下样式设置,本章节就简单介绍一下,如何利用CSS设置要被打印内容的样式,方式有多种,下面一一做一下简单介绍.一.使用link引入外部样式表: <link rel="stylesheet" href="css/style.css" media="screen" /> 以上代码的CSS样式用于屏幕显示效果,对于打印无效.关

自定义动画animate可以操作css样式属性总结

自定义动画animate可以操作css样式属性总结 backgroundPosition * borderWidth * borderBottomWidth * borderLeftWidth * borderRightWidth * borderTopWidth * borderSpacing * marginBottom * marginLeft * marginRight * marginTop * outlineWidth * paddingBottom * paddingLeft *

IE6支持兼容min-width、max-width CSS样式属性

IE6支持兼容min-width.max-width CSS样式属性 让IE6支持max-width.IE6支持min-width样式 我们在写CSS的时候,常常会遇到让一个图片或一个布局不能超出设定一定宽度范围值,有时需要设置一个最小宽度,接下来由DIVCSS5为大家总结的解决IE6不支持min-width和不支持max-width的方法.以下为CSS 宽度之IE6支持最小宽度.最大宽度解决技巧(你可能需要进一步详细了解CSS width知识). 目录 IE6支持max-width解决方法 I

js中获取css样式属性值

关于js中style,currentStyle和getComputedStyle几个注意的地方 (1)用js的style只能获取元素的内联样式,内部样式和外部样式使用style是获取不到的. (2)currentStyle可以弥补style的不足(可获取内联样式,内部样式和外部样式),但是只适用于IE. (3)getComputedStyle同currentStyle作用相同,但是适用于FF.opera.safari.chrome. 注意: ① currentStyle和getComputedS

获取元素的CSS样式属性值 IE兼容写法

/** * 获取元素的CSS样式属性值 */function css(element, attrName) { /*if (window.getComputedStyle) return window.getComputedStyle(element)[attrName] return element.currentStyle[attrName];*/ return window.getComputedStyle ? getComputedStyle(element)[attrName]: el

对于用js获取元素的css样式属性(getComputedStyle,currentStyle,style)(getPropertyValue,getAttribute)

首先单独拎出来讲的是style style: nodeObject.style.cssProperty获取的是DOM节点上 style 属性定义的样式,如果不存在 style 属性,或者 style 属性没有定义相应的样式,则是无法获取的.也就是说,JavaScript 不会到 <style> 标签或者 CSS 文件去获取相应的样式,只能获取 style 属性定义的样式. 就是外部样式表,内部样式表,用style都是无效的,只有内联样式是有效的,当然用style写入也是写入在内联样式的. 然后

1118第二部分CSS样式属性(1)

第一课:样式属性 style 样式:style样式不仅可以直接在<body>中设置成整个网页的样式.格式:为了将样式.格式多样化,也可以将style单独抽出来,作为一个独立的个体,放在<head>..</head>中来分别设置不同元素.标签的格式和样式. 这样做出来的效果和在<body>中设置的格式是一样的,但有所区别的是单独把style写出来的样式可以只对某个或某几个标签有效,有效防止编写重复.费时和修改麻烦等: 还可以在style中对设置的格式的标签进行

CSS样式属性分类

A 文字 1 font-family:字体名称 注意: 当指定多种字体时,用“,”分隔每种字体的名称 当字体名称包含两个以上分开的单词是,用“”把该字体名称括起来. 当样式规则外已经有“”时,用‘’代替“”. 2 font-size:字号参数. 3 font-style:斜体字的名称. normal正常状态.italic斜体字.oblique 斜体和正常状态之间. 4 font-weight:字体粗细. 取值是:number(100-900) 或者参数 lighter(细体) 和bold(粗体)