CSS学习笔记一 (视频教程)

CSS (层叠样式表)

 

eg.<head><style> &&& <style><head>

在HTML中加入CSS的三种办法:
1.做外部 CSS 文件
2.在中加入标记
3.在标记中加入style属性(内嵌)
eg.
/ <p style="background-color:yellow;"> </p> /

 


背景样式

1.纯色
eg.<body style="background-color:gray;"> </body>
/ 两种表示颜色的方式 /
/ ①英文表示法 : 默认颜色为transparent /
/ ②RGB原色:(16进制) #FF0000 ( red、green、blue ) /
/ (10进制) rgb(255,255,0) /
/ (α通道,α代表透明度,范围为0~1 ) rgba(255,255,0,0.5) /

2.图像image
eg.<body style="background-image:url(~~~.jpg);"> </body>
/ 控制背景图片重复( repeat ) /
/ <body style="background-repeat:repeat-x;"> /
/ <body style="background-repeat:repeat-y;"> /
/ <body style="background-repeat:no-repeat;"> /
/ 控制背景图片位置(position) /
/ <body style="background-position:left/right;">/
/ <body style="background-position:centre;">/
/ <body style="background-position:top;">/
/ <body style="background-position:100px,100px;">/
/ 字体与文字滚动(attachment) /
/ <body style="background-attachment:scroll 滚动">/
/ <body style="background-attachment:fixed 固定">/

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。