CSS常用操作-图片】的更多相关文章

index.html <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> <link href="style9.css" type="text/css" rel="stylesheet"> </head> <…
5.  CSS常用操作 5.1  对齐 使用margin属性进行水平对齐 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> div{ width:300px; height:100px; margin:0px auto; background-colo…
CSS背景图片定位其实对于每一位学习前端的同学来说,都已经非常熟悉了.网上铺天盖地的最常见的一种方案就是在父元素中relative,然后子元素absolute.这种方案当然好,不过带来的一个缺点就是会改变元素的层级关系,如果在多个地方使用,这样的层叠嵌套的关系会十分混乱. 先暂时抛弃那种方案,给大家分享几种CSS背景图片定位的方案. 整篇文章会按照如下思路: 1.无依赖的absolute定位 2.background-position扩展语法 3.background-origin定位 4.ca…
index.html <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>对齐</title> <link href="style8.css" type="text/css" rel="stylesheet"> </head> <body> <di…
对齐 在 CSS 中,可以使用多种属性来水平对齐元素. 水平对齐 使用 margin 属性来水平对齐,可通过将左和右外边距设置为 "auto",来对齐块元素. 把左和右外边距设置为 auto,规定的是均等地分配可用的外边距.结果就是居中的元素: .center { margin-left:auto; margin-right:auto; width:70%; background-color:#b0e0e6; } 也可以简写为,这里把上下的外边距设定为0: .center { marg…
对齐操作 1.使用margin属性进行水平对齐     margin-left:auto;    margin-right:auto; 2.使用position属性进行左右对齐      3.使用float属性进行左右对齐 尺寸操作 height          设置元素高度 line-height          设置行高 max-height          设置元素最大高度 max-width          设置元素最大宽度 min-width          设置元素最小宽度…
1.对齐 <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>对齐</title> <style> * { margin: 0px; } .div { width: 70%; height: 1000px; background-color: red; margin-left: auto; margin-right: auto; }…
1.垂直导航栏 index.html <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>导航栏</title> <link href="style9.css" type="text/css" rel="stylesheet"> </head> <body&g…
css代码 背景与前景 background-color:#0000; //背景色,样式表优先级高 background-image:url(路径); //设置背景图片 background-attachment:fixed; //背景固定,不随字体滚动 background-attachment:scroll; //背景是随着字体滚动的 background-repeat:no-repeat ; //no-repeat 不平铺 repeat 平铺 repeat-x 横向平铺 repeat-y…