【CSS样式】教程文章相关的互联网学习教程文章

CSS样式-position为absolute的情况下如何居中

<!DOCTYPE?html> <html?lang="en"> <head> ????<title>Document</title> ????<style?type="text/css"> ????????div?{ ????????????width:?300px; ????????????height:?300px; ????????????background-color:?#f00; ????????????position:?absolute; ????????????left:?50%; ????????????/*?用width/2?*/ ????????????margin-left:?-150px; ????????????top:?50%; ????????????/*?用height/2?*/ ????????????margin-top:?-150px; ...

CSS样式大全

一 CSS文字属性: color : #999999; /文字颜色/ font-family : 宋体,sans-serif; /文字字体/ font-size : 9pt; /文字大小/ font-style:itelic; /文字斜体/ font-variant:small-caps; /小字体/ letter-spacing : 1pt; /字间距离/ line-height : 200%; /设置行高/ font-weight:bold; /文字粗体/ vertical-align:sub; /下标字/ vertical-align:super; /上标字/ text-decoration:line-through; /加删除线/ text-decoration: overline; ...