<head>
<meta charset="UTF-8">
<title>css引入方式</title>
<!--<style>-->
<!--/*内接样式*/-->
<!--p{-->
<!--font-size: 30px;-->
<!--}-->
<!--</style>-->
<!--外接样式:链接式-->
<!--<link rel="stylesheet" href="./index.css">-->
<!--导入式-->
<style>
@import url(index.css);
</style>
</head>
<body>
<!--
1. 行内样式
2. 内接样式
3. 外接样式
3.1 链接式
3.2 导入式
-->
<div>
<!--行内样式-->
<p style="color: aqua">这是一个段落</p>
<a href="http://www.baidu.com"> 单击跳转到百度</a>
</div>
</body>
<!--style-->
#list1{
font-size: 25px;
color: #ff7e79;
}
<div>
<ul id="list1">
<li>喵喵喵</li>
<li>汪汪汪</li>
<li>咩咩咩</li>
</ul>
</div>
div p {
color: red;
}
div>p {
color: red;
}
<!--从div的直接子元素中找到p标签,设置字体颜色为红色-->
h3.active{
color:red;
}
a,h4{
color:#666;
font-size:20px;
}
[title] {
color: red;
}
[title="hello"] {
color: red;
}
[title^="hello"] {
color: red;
}
[title$="hello"] {
color: red;
}
[title*="hello"] {
color: red;
}
[title~="hello"] {
color: red;
}
<style>
/*访问过的超链接a标签样式:*/
a:visited{
color: darkblue;
}
/*鼠标点击瞬间的样式:*/
a:active{
color: black;
}
/*鼠标悬浮在元素上应用样式:*/
a:hover{
color: yellow;
}
/*没有访问过的超链接a标签样式*/
a:link{
color: chartreuse;
}
</style>
<head>
<meta charset="UTF-8">
<title>伪类选择器</title>
<style>
ul li{
position:relative;
}
ul li img{
display: none;
position: absolute;
top: -16px;
left: 50px;
}
ul li:hover img{
display: block;
}
</style>
</head>
<body>
<div class="box">
<ul>
<li class="list1">
<a href="#"> 这是一个链接</a>
<img src="images/car1.png" alt="喵">
</ul>
</div>
</body>
/*
nth-child():
括号内数值设置:
数字 选中那个哪个数字哪一行就使用更改元素,从1开始
n 选中所有
2n-1 隔一个选一个
*/
div ul li:nth-child(2n-1){
color: darkgray;
}
p:first-letter {
font-size: 48px;
}
p:before {
content: "*";
color: red;
}
p:after {
content: "?";
color: red;
}
p{
color:red !important
}
<head>
<meta charset="UTF-8">
<title>盒模型</title>
<style type="text/css">
div{
width: 300px;
height: 500px;
padding: 10px;
border: 1px solid black;
}
</style>
</head>
<body>
<div>
<p>很多内容~很多内容~很多内容~很多内容~很多内容~很多内容~很多内容~很多内容~很多内容~很多内容~</p>
</div>
</body>
<head>
<meta charset="UTF-8">
<title>padding</title>
<style>
div{
width: 300px;
height: 500px;
background-color: red;
/*小属性设置*/
/*padding-top: 30px;*/
/*padding-right: 30px;*/
/*padding-bottom: 30px;*/
/*padding-left: 30px;*/
/*综合属性设置:使用空格隔开*/
/*上、右、下、左*/
/*padding:30px 20px 50px 40px;*/
/*上、左右、下*/
/*padding: 30px 20px 50px;*/
/*上下、左右*/
padding: 20px 30px;
}
</style>
</head>
<body>
<div>
<p>内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容</p>
</div>
</body>
/* 清除内外边距 */
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
fieldset, lengend, button, input, textarea, /* form elements 表单元素 */
th, td { /* table elements 表格元素 */
margin: 0;
padding: 0;
}
border: solid
div{
width:200px;
height:500px;
border-width: 3px;
border-style: solid;
border-color: red;
/*
border-width: 5px 10px;
border-style: solid dotted double dashed;
border-color: red green yellow;
*/
}
<!--按照方向划分-->
div{
width:200px;
height:500px;
/*上*/
border-top-width: 10px;
border-top-color: red;
border-top-style: solid;
/*右*/
border-right-width: 10px;
border-right-color: red;
border-right-style: solid;
/*下*/
border-bottom-width: 10px;
border-bottom-color: red;
border-bottom-style: solid;
/*左*/
border-left-width: 10px;
border-left-color: red;
border-left-style:solid;
}
/*上面代码可以简写*/
div{
width:20px;
height:20px;
border-top: 10px solid red;
border-right: 10px solid red;
border-bottom: 10px solid red;
border-left: 10px solid red;
}
div{
width: 0;
height: 0;
border-bottom: 20px solid red;
border-left: 20px solid transparent;
border-right: 20px solid transparent;
}
margin:0 auto 居中盒子而不是居中文本
<head>
<meta charset="UTF-8">
<title>行内元素与块级元素的互相转换</title>
<style type="text/css">
/*将行内元素转换为块级元素,转换后拥有块级元素的属性*/
span{
display:block;
width: 200px;
height: 200px;
background-color: red;
padding: 20px;
}
/*将块级元素转换为行内元素*/
p{
display: inline;
}
</style>
</head>
<body>
<div>
<p>这是一个段落</p>
<span>这是一个span标签</span>
<a href="#">这是一个链接</a>
</div>
<div class="div1">
<p>喵喵喵</p>
</div>
</body>
<head>
<meta charset="UTF-8">
<title>浮动</title>
<style type="text/css">
.div1{
width: 200px;
height: 50px;
background-color: darkgray;
float: left;
}
.div2{
width: 200px;
height: 50px;
background-color: red;
float: left;
}
</style>
</head>
<body>
<div class="div1">
</div>
<div class="div2">
</div>
</body>
<head>
<meta charset="UTF-8">
<title>清除浮动</title>
<style type="text/css">
* {
padding: 0;
margin: 0;
}
li{
list-style: none;
}
.course_list ul li{
background-color: red;
float: left;
width: 200px;
height: 40px;
}
.none{
background-color: black;
width: 500px;
height: 300px;
}
/*使用伪元素选择器清除浮动
*/
.clearfix:after{
content: ‘.‘;
clear: both;
height: 0;
visibility: hidden;
display: block;
}
</style>
</head>
<body>
<div class="clearfix">
<ul>
<li>Python</li>
<li>WEB</li>
<li>Liunx</li>
</ul>
</div>
<div class="none">
</div>
</body>
font-size: 30px;
font-weight: bold;
<head>
<meta charset="UTF-8">
<title>多行文本居中</title>
<style>
div{
width: 300px;
/*height - (400-210)/2 */
height: 305px;
/*padding-top = (400-210) / 2 */
padding-top: 95px;
border: 1px solid red;
/*行高 * 行数 = 210*/
line-height: 30px;
}
</style>
</head>
<body>
<div>
文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字
</div>
</body>
div{
background-color: red;
background-color: rgb(255,255,255);
<!--rgba a表示的透明度,越低越透明-->
background-color: rgba(255,255,255,0.5)
}
div{
background-image:url(图片地址);
}
div{
background-position:100px 100px
}
div{
<!--固定背景图不动-->
background-attachment: fixed;
}
div{
background: url("./images/car1.png") no-repeat center center;
}
div{
width: 200px;
height: 200px;
background-color: black;
/*相对定位:相对于自己原来的本身定位top:20px
那么盒子相对于原来的位置向下移动。相对定位仅仅微调我们元素的位置*/
position: relative;
top: 20px;
left: 20px;
}
<head>
<meta charset="UTF-8">
<title>参考点</title>
<style>
.box1{
width: 400px;
height: 400px;
margin: 100px;
border: 5px solid red;
/*父级元素设置相对定位*/
position: relative;
}
.p{
width: 100px;
height: 100px;
background-color: pink;
/*子元素设置绝对定位,参考点为父级元素的左上角*/
position: absolute;
top: 50px;
left: 20px;
}
</style>
</head>
<body>
<div class="box1">
<p class="p">
</p>
</div>
</body>
<style>
.box1{
width: 100%;
height: 40px;
background-color: #666666;
}
.box2{
width: 800px;
height: 40px;
background-color: pink;
/*子元素设置绝对定位后居中显示*/
position: absolute;
left: 50%;
margin-left: -400px;
/*
设置绝对定位之后,margin:0 auto不起任何作用,如果想让绝对定位的元素居中
设置子元素left:50%然后设置
margin-left等于元素宽度的一半(负),实现绝对定位盒子居中
*/
}
</style>
固定导航栏
小广告
原文:https://www.cnblogs.com/wualin/p/9998170.html