15158846557 在线咨询 在线咨询
15158846557 在线咨询
所在位置: 首页 > 营销资讯 > 网站运营 > web建站-CSS基础

web建站-CSS基础

时间:2023-07-10 23:30:01 | 来源:网站运营

时间:2023-07-10 23:30:01 来源:网站运营

web建站-CSS基础:文章参考链接




属性作用
<b> </b>内容加粗
<i> </i>斜体文本
<u> </u>文本加下划线
html属性

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <p> <font face="隶书" size="5px" color="red">欢迎来到css</font> <br/> 借助<b><i>CSS</i></b>,<u>你的网站更精彩</u> </p> </body> </html>传统HTML格式修饰的缺点


引入CSS


CSS(Cascading Style Sheets) ,层叠样式表,用于控制页面样式并允许允许样式信息与内容分离的一种标记性语言
页面构成


CSS优势


CSS基本语法
简单的单选题器的语法模板:


selector{ property : value; property : value; ... property : value;}<!--举例-->h1{ font-family:"宋体"; color:red;}
多选择器的语法模板


selector1,selector2{ property : value; property : value; ... property : value;}<!--举例-->h1,h2{ color:green;}
CSS引入方式


行内引入(尽量避免)


<h1 style="color: blue;"> This heading will be blue now. </h1>内嵌式引用(尽量避免)


<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title> <style type="text/css"> h1 { color: red; } </style></head><body> <h1> This heading will be blue now. </h1></body></html>链接式引用


<!--html代码--><!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title> <link href="style.css" type="text/css" rel="stylesheet"/></head><body> <h1> This heading will be blue now. </h1></body></html>/*style.css css代码 ,此代码为css的注释*/h1{ color: green;}三种情况注意:
如果同时使用,运行效果依据:
行内>内嵌>链接
CSS属性


CSS属性描述
color(文本)前景色颜色(颜色名称,RGB,或HEX)
background-color元素的背景色颜色(颜色名称,RGB,或HEX)
CSS属性CSS属性–Font


属性描述
font-family所用字体字体名称,如“宋体”,“黑体”
font-size字体大小单元值,百分比,命名值
font-style是否倾斜normal , italic(斜体) , oblique(倾斜)
font-weight是否加粗normal,bold,bolder,lighter,inherit,100-900
font-variant设定小型大写字母normal,small-caps,inherit
font设置所有字体属性style,weight,size,family
/*css文件*/h2{ font-family: 华文宋体;}p{ font-family: Courier; font-size: 14pt;}<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title> <link href="style.css" type="text/css" rel="stylesheet"/></head><body> <h2> This heading will be blue now. </h2> <p> this a 字体测试 </p></body></html>CSS属性-text


属性描述
text-align行内容对齐left,center,right,justify
text-decoration增加下划线underline,overline,line-thrughblink,none
text-indent首行缩进px,pt,%,em
text-overflow如何处理太长文本clip,ellipsis,ellipsis-word
text-shadow设置文本阴影例:px,px,px,#ff0000
text-shadow设置文本阴影例:px,px,px,#ff0000
text-transfom修改文本大小写capitalize ,uppercase,lowercase
line-height设置行高px,pt,%,em
letter-spacing设置字符间距px,pt,%,em
word-spacing设置字间距px,pt,%,em

属性描述
text-align行内容对齐left,center,right,justify
text-decoration增加下划线underline,overline,line-thrughblink,none
text-indent首行缩进px,pt,%,em
text-overflow如何处理太长文本clip,ellipsis,ellipsis-word
text-shadow设置文本阴影例:px,px,px,#ff0000
text-shadow设置文本阴影例:px,px,px,#ff0000
text-transfom修改文本大小写capitalize ,uppercase,lowercase
line-height设置行高px,pt,%,em
letter-spacing设置字符间距px,pt,%,em
word-spacing设置字间距px,pt,%,em
css属性–textCSS属性-background


属性描述
background-color背景颜色颜色(名称,RGB,HEX)
background-image背景图片url(“图片URL”)
background-repead是否及如何重复背景图片repeat,repeat-x,repeat-y,no-repeat
background-attachment背景图片是否固定或者页面其余部分滚动fixed,scroll
background简写属性,在一个声明中设置所有背景属性#ff0000url(/i/eg_bg_03.gif) no-repeat fixed center

属性描述
background-color背景颜色颜色(名称,RGB,HEX)
background-image背景图片url(“图片URL”)
background-repead是否及如何重复背景图片repeat,repeat-x,repeat-y,no-repeat
background-attachment背景图片是否固定或者页面其余部分滚动fixed,scroll
background简写属性,在一个声明中设置所有背景属性#ff0000url(/i/eg_bg_03.gif) no-repeat fixed center
/*css文件*/h2{ font-family: 华文宋体;}p{ font-family: Courier; font-size: 14pt;}body{ background-image: url("网站修改.png"); background-repeat: repeat-x; background-position: center;}<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title> <link href="style.css" type="text/css" rel="stylesheet"/></head><body> <h2> This heading will be blue now. </h2> <p> this a 字体测试 </p></body></html>/*css文件*/ol{ list-style-type: armenian;}<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title> <link href="style.css" type="text/css" rel="stylesheet"/></head><body> <h2> This heading will be blue now. </h2> <p> this a 字体测试 </p> <ol> <li>HTML</li> <li>css</li> <li>php</li> </ol></body></html>注意
样式继承与冲突
多种样式应用到一个元素,这样样式将被继承
更紧的匹配将覆盖一般意义的继承
样式冲突:两种样式发生相同时属性冲突时,后面的样式优先
ID和ID选择器


对ID格式进行格式化CSS,使用#ID


/*css文件*/ol{ list-style-type: armenian;}#mission{ font-style: italic;}<p id="mission">Our mission is to provide the most spectacular spatulas and splurge on our specials until our customers <q>esplode</q> with splendor!</p>链接到页面中的某部分—-锚点


<p id="mission">Our mission is to provide the most spectacular spatulas and splurge on our specials until our customers <q>esplode</q> with splendor!</p> <p> Visit<a href="https://www.foryouos.com">foryouos.com</a> to get textPad editor. </p> <a href="#mission">View our Mission statement</a>类与类选择器—-类


<p class="shout">Spatula City! Spatula City!</p> <p class="special">See our spectacular spatula specials!</p> <p class="special">Today only:satisfaction guaranteed.</p>类选择器


.special{ font-weight: bold;}p.shout{ color: red; font-family: Courier;}/*css文件*/
属性描述
:active向被激活的元素增加样式
:hover当鼠标悬浮在元素上方时,向元素增加样式
:link向未被访问的链接增加样式
:visited向已被访问的链接增加样式
:focus向拥有键盘输入焦点的元素增加样式
伪类选择器

/*css*/a:link{color: #FF0000}a:visited{color: #00FF00}a:hover{color: #FF00FF}a:active{color: #0000FF}<!--html--> <p><b><a href="style.css" target="_blank">这是一个链接。</a></b></p> <p><b>注释:</b>在CSS定义中,a:hover必须位于a:link和a:visited之后,这样才能生效</p> <p><b>注释:</b>在CSS定义中,a:active必须位于a:hover之后,这样才能生效</p><div> </div> 分割区 对一个页面实现不同的功能显示
span 仅在一定范围内使用样式的行内元素
页面划分(div)


<!--HTMl--><div class="shout"> <h2>Spatula City!</h2> <p class="special">See our spectacular</p> <p>we'll beat any advertised price!</p> </div>/*css文件*/.special{ background-color: yellow; font-weight: bold;}.shout{ color: red; font-family: Courier;}span的使用
仅在一定范围内使用样式的行内元素


<h2>Spatula City!</h2> <p>See our <span class="special"> spectacular</span></p> <p>we'll beat <span class="shout">any advertised price!</span> </p>后代选择器


<!--HTML--><ul class="newslist"> <li>html</li> <li>CSS</li> <li>Javascrip</li></ul>/*css文件*/.newslist { background-color: yellow; font-weight: bold;}/*css文件*/.newslist li { background-color: yellow; font-weight: bold;}子元素选择器


<ul class="newslist"> <li>html</li> <li>CSS</li> <li>Javascrip</li> <ul> <li>apple</li> <li>android</li> </ul> </ul>/*css文件*/li { background-color: cyan; font-weight: normal;}.newslist { background-color: yellow; font-weight: bold;}扩展阅读
CSS样式优先级
选择器优先级
页面布局及盒模型
块元素布局



行内元素布局



整页布局



盒模型
CSS盒模型主要思想是每个元素的布局由四部分组成



border


<h2>CSS基础知识</h2>/*css文件*/h2 { border: 5px solid red; border-left: thick dotted #cc0088; border-bottom-color: rgb(0,128,128); border-bottom-style: double;}border—-table collapse


<table> <tr><th>学号</th><th>成绩</th></tr> <tr><td>2130505052</td><td>89</td></tr> <tr><td>2130822535</td><td>58</td></tr> </table>/*css文件*/table,td,th { border:2px solid black;} <table> <tr><th>学号</th><th>成绩</th></tr> <tr><td>2130505052</td><td>89</td></tr> <tr><td>2130822535</td><td>58</td></tr> </table>/*css文件*/table,td,th { border:2px solid black; border-collapse: collapse;}
box-shadow


<h1>Web编程基础</h1> <p>学习HTML,CSS</p> <p>PHP,哈哈</p>/*css文件*/p { border: 1px dotted black; box-shadow: 10px 10px 5px gray;}h1 { box-shadow: 20px 20px 10px gray inset;}padding


属性含义
padding4边的padding
padding-bottompadding-leftpadding-rightpadding-top1边的padding

属性含义
padding4边的padding
padding-bottompadding-leftpadding-rightpadding-top1边的padding

属性含义
padding4边的padding
padding-bottompadding-leftpadding-rightpadding-top1边的padding

属性含义
padding4边的padding
padding-bottompadding-leftpadding-rightpadding-top1边的padding
padding

h1 { padding:1em 2em 3em 4em ;}
注意: 从top开始,沿顺时针方向,即top,right,bottom,left

h1 { padding : 1em 4em ;}
注意:从第一项指top和bottom,第二项指right,left
padding示例


<h1>Web编程基础</h1> <h1>第一讲</h1> <h2>第二讲</h2> <h3>第三讲</h3> <h4>第四讲</h4>/*css文件*/h1 { padding: 1em; background-color: yellow; border: 2px solid black;}h2 { padding: 0em; background-color: #BBFFBB;}h3 { padding-left: 200px; padding-top: 30px; background-color: green;}margins


属性含义
margin4边的margin
margin-bootommargin-leftmargin-rightmargin-top1边的margin

属性含义
margin4边的margin
margin-bootommargin-leftmargin-rightmargin-top1边的margin

属性含义
margin4边的margin
margin-bootommargin-leftmargin-rightmargin-top1边的margin

属性含义
margin4边的margin
margin-bootommargin-leftmargin-rightmargin-top1边的margin
marginsh1 { margin:1em 2em 3em 4em ;}
注意: 从top开始,沿顺时针方向,即top,right,bottom,left

h1 { margin : 1em 4em ;}



注意:从第一项指top和bottom,第二项指right,left


<h1>Web编程基础</h1> <h1>第一讲</h1> <h2>第二讲</h2> <h3>第三讲</h3> <h4>第四讲</h4>/*css文件*/h1 { margin: 1em; background-color: yellow; border: 2px solid black;}h2 { margin: 0em; background-color: #BBFFBB;}h3 { margin-left: 200px; padding-top: 30px; background-color: green;}floating元素


属性含义
width设置元素内容显示区的宽度一种尺寸(px,pt,%,em)
float浮动,即从正常内容流中提升元素left,right,none(default)
width和float注意:width属性仅对块元素和img元素有效


<div> <h1>学习web</h1> <p>第一个块元素</p> <span>第一个行内元素</span> </div>/*css文件*/h1,p,span { border:2px solid black; width: 50%;}p{ text-align: center;}span { background-color: red; color: white;}


<div> <p><img src="https://i2.kknews.cc/SIG=k2clg6/ctp-vzntr/1534508967149q7o61qp7op.jpg" alt="koala" class="headericon" />树袋熊</p> </div>/*css文件*/p{ width: 800px;border: 2px solid black;}img.headericon{ float: right; width: 202px; border: 1px dotted black;}浮动元素经常会设置一个width值
如果没有指定width值,其他内容将不能环绕着浮动元素


属性含义
clear规定元素的哪一侧不允许其他浮动元素left,right,both,none(default)
overflow属性规定当内容溢出元素框时发生的事情visible(default),hidden,scroll ,auto
css属性描述
column-count规定元素应该被分隔的列数一个整数
column-gap规定列之间的间隔尺寸(px,pt,em,%)
column-rule设置列之间的竖线宽度,样式和颜色规则2px solid green
column-span规定元素应横跨多少列1或者all
column-width规定列的宽度尺寸(px,pt,em,%)
多列属性

属性含义
width,height设置元素内容显示区的宽度和高度
max-widthmax-heightmin-widthmin-height设置元素的最大,最小高度和宽度

属性含义
width,height设置元素内容显示区的宽度和高度
max-widthmax-heightmin-widthmin-height设置元素的最大,最小高度和宽度

属性含义
width,height设置元素内容显示区的宽度和高度
max-widthmax-heightmin-widthmin-height设置元素的最大,最小高度和宽度

属性含义
width,height设置元素内容显示区的宽度和高度
max-widthmax-heightmin-widthmin-height设置元素的最大,最小高度和宽度
width和height注意:以上 属性仅对块元素和img元素有效,如果出现在其它元素中国,将被忽略


属性描述
vertical-align设置元素的垂直对齐方式baseline(默认),与安娜苏放置在父元素的基线上,top,元素的顶部与行中最高元素的顶端对齐middle元素放置在父元素的中部sub垂直对齐文本的下标super,垂直对齐文本的上标text-top元素顶端与父元素字体的低昂段对齐text-bottom元素的订单与父元素字体的低端对齐a size or %

属性描述
vertical-align设置元素的垂直对齐方式baseline(默认),与安娜苏放置在父元素的基线上,top,元素的顶部与行中最高元素的顶端对齐middle元素放置在父元素的中部sub垂直对齐文本的下标super,垂直对齐文本的上标text-top元素顶端与父元素字体的低昂段对齐text-bottom元素的订单与父元素字体的低端对齐a size or %

属性描述
vertical-align设置元素的垂直对齐方式baseline(默认),与安娜苏放置在父元素的基线上,top,元素的顶部与行中最高元素的顶端对齐middle元素放置在父元素的中部sub垂直对齐文本的下标super,垂直对齐文本的上标text-top元素顶端与父元素字体的低昂段对齐text-bottom元素的订单与父元素字体的低端对齐a size or %

属性描述
vertical-align设置元素的垂直对齐方式baseline(默认),与安娜苏放置在父元素的基线上,top,元素的顶部与行中最高元素的顶端对齐middle元素放置在父元素的中部sub垂直对齐文本的下标super,垂直对齐文本的上标text-top元素顶端与父元素字体的低昂段对齐text-bottom元素的订单与父元素字体的低端对齐a size or %

属性描述
vertical-align设置元素的垂直对齐方式baseline(默认),与安娜苏放置在父元素的基线上,top,元素的顶部与行中最高元素的顶端对齐middle元素放置在父元素的中部sub垂直对齐文本的下标super,垂直对齐文本的上标text-top元素顶端与父元素字体的低昂段对齐text-bottom元素的订单与父元素字体的低端对齐a size or %

属性描述
vertical-align设置元素的垂直对齐方式baseline(默认),与安娜苏放置在父元素的基线上,top,元素的顶部与行中最高元素的顶端对齐middle元素放置在父元素的中部sub垂直对齐文本的下标super,垂直对齐文本的上标text-top元素顶端与父元素字体的低昂段对齐text-bottom元素的订单与父元素字体的低端对齐a size or %

属性描述
vertical-align设置元素的垂直对齐方式baseline(默认),与安娜苏放置在父元素的基线上,top,元素的顶部与行中最高元素的顶端对齐middle元素放置在父元素的中部sub垂直对齐文本的下标super,垂直对齐文本的上标text-top元素顶端与父元素字体的低昂段对齐text-bottom元素的订单与父元素字体的低端对齐a size or %

属性描述
vertical-align设置元素的垂直对齐方式baseline(默认),与安娜苏放置在父元素的基线上,top,元素的顶部与行中最高元素的顶端对齐middle元素放置在父元素的中部sub垂直对齐文本的下标super,垂直对齐文本的上标text-top元素顶端与父元素字体的低昂段对齐text-bottom元素的订单与父元素字体的低端对齐a size or %
垂直对齐定位及元素可见性


属性含义
position对页面元素进行定位static:默认值,没有定位relative:相对于其正常位置的偏移量absolute:绝对定位的元素,相对于static定位以外的第一个父元素进行定位fixed:绝对定位的元素,相对于浏览器窗口进行定位
top,bottom,left,right元素边界的偏移量尺寸(px,pt,em,%)

属性含义
position对页面元素进行定位static:默认值,没有定位relative:相对于其正常位置的偏移量absolute:绝对定位的元素,相对于static定位以外的第一个父元素进行定位fixed:绝对定位的元素,相对于浏览器窗口进行定位
top,bottom,left,right元素边界的偏移量尺寸(px,pt,em,%)

属性含义
position对页面元素进行定位static:默认值,没有定位relative:相对于其正常位置的偏移量absolute:绝对定位的元素,相对于static定位以外的第一个父元素进行定位fixed:绝对定位的元素,相对于浏览器窗口进行定位
top,bottom,left,right元素边界的偏移量尺寸(px,pt,em,%)

属性含义
position对页面元素进行定位static:默认值,没有定位relative:相对于其正常位置的偏移量absolute:绝对定位的元素,相对于static定位以外的第一个父元素进行定位fixed:绝对定位的元素,相对于浏览器窗口进行定位
top,bottom,left,right元素边界的偏移量尺寸(px,pt,em,%)
定位

属性含义
z-index设置元素的3维折叠顺序auto:堆叠顺序与父元素相等an interger:设置元素的堆叠顺序

属性含义
z-index设置元素的3维折叠顺序auto:堆叠顺序与父元素相等an interger:设置元素的堆叠顺序



<h1>这是一个标签</h1> <img class="x" src="psc.png"/> <p>默认的z-index是0.z-index -1拥有最低的优先级1拥有最高的等级</p>/*css文件*/img.x { position: absolute;left: 0px; top: 0px;z-index: -1;}
属性含义
display设置元素应该生成的框的类型block:元素将显示为块元素,元素前后带有换行符
visibility设置元素能否可见visible:默认值,元素是可见的hidden:元素是不可见的
opacity设置 元素的透明度从0.0(完全透明)到1.0(完全不透明)

属性含义
display设置元素应该生成的框的类型block:元素将显示为块元素,元素前后带有换行符
visibility设置元素能否可见visible:默认值,元素是可见的hidden:元素是不可见的
opacity设置 元素的透明度从0.0(完全透明)到1.0(完全不透明)
元素可见性

<h2>这是一个标题</h2> <h2>这是另一个标题</h2>/*css文件*/h2 { background-color: yellow; border: 1px solid black; display: inline;}将列表显示为行内元素


<ul id="menubar"> <li>新闻</li> <li>友情链接</li> <li>会员</li> <li>注册</li> </ul>/*css文件*/li{ padding: 0.5em; border: 2px solid gray; display: inline;}
visibility属性
display和visibility的主要区别
-display:none ;元素不会占用页面上的空间
-visibility:hidden;虽然它的内容用户看不到,但元素仍然占用页面空间

关键词:基础

74
73
25
news

版权所有© 亿企邦 1997-2025 保留一切法律许可权利。

为了最佳展示效果,本站不支持IE9及以下版本的浏览器,建议您使用谷歌Chrome浏览器。 点击下载Chrome浏览器
关闭