css
文章平均质量分 67
gzlxing
坚持就一定会胜利
展开
-
盒子模型
盒子模型(div)1、边框(border) ---border-top 上边框 ---border-right 右边框 ---border-buttom 下边框 ---border-left 左边框 ---border-width 边框的宽度 ---border-width-to原创 2017-10-08 19:33:40 · 249 阅读 · 0 评论 -
懒加载
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no"/> <title></title&...原创 2019-03-18 20:56:49 · 227 阅读 · 0 评论 -
时针
时针<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title> <style type="text/css"> * { margin: 0;...原创 2019-03-18 19:43:09 · 424 阅读 · 0 评论 -
css测试题
css小测试原创 2017-11-23 18:47:35 · 255 阅读 · 0 评论 -
CSS基础
复习第五天的知识1、表格由内容区(content)、内边距(padding)、边框(border)、外边距(margin)组成2、box-sizing的属性值有两个,分别是content-box 默认盒子模型 盒子的宽=width border-box 怪异盒子模型 盒子的宽=width+border+padding原创 2017-10-09 21:16:36 · 204 阅读 · 0 评论 -
css基础浮动相关知识
复习第六天的知识1、元素的隐藏方式:---display:none; 不会占用页面的空间 ---visibility:hidden; 占用页面的空间2、display属性值: display:block;显示为块级元素 display:inline;显示为内联元素 display:inline-block;显示为原创 2017-10-11 20:02:58 · 203 阅读 · 0 评论 -
css 全局布局 等高布局
复习第八天的知识写一个双飞翼布局双飞翼布局 *{ margin:0; padding:0; } header,footer{ width:800px; height:50px; background-color:gray; margi原创 2017-10-14 08:36:22 · 494 阅读 · 0 评论 -
css 布局 两列布局与三列布局
复习前一天的知识1、position开启定位的值有: position:absolute;绝对定位 position:fixed; 固定定位 position:relative;相对定位2、position开启定位后的相对偏移量有: top -- 上偏移量 right -- 右偏移量 bottom -- 下偏移量 l原创 2017-10-14 08:50:51 · 344 阅读 · 0 评论 -
页面头部分析
头部原创 2017-10-17 21:17:47 · 380 阅读 · 0 评论 -
css 基本属性
1、文本 font-indent:; 首行缩进 text-align:; 文本对齐方式 --center 水平居中 --justity 两端对齐,调节单词和字母间的间隔 --left,right 左,右对齐 letter-spacing 字母间隔 word-spacing 字间隔,两者区别为:字母间隔修改的是字符或字母之间的间隔。 text-transform 处理文本的大小写原创 2017-10-17 21:16:31 · 319 阅读 · 0 评论 -
轮播图
<!DOCTYPE html><html><head> <meta charset="UTF-8"> <title>焦点轮播图</title> <style type="text/css"> /*去除内边距,没有链接下划线*/ * { margin: 0; padding: 0; ...原创 2019-03-18 21:03:44 · 182 阅读 · 0 评论