一、鼠标悬停 :鼠标选停到上时,设置样式 名:hover{ 样式:样式值 } 例如:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
span{
color:red;
}
span:hover{
color:blue;
text-decoration: underline;
}
a{
padding-right:20px;
color:blue;
}
a:hover{
color:green;
text-decoration: none;
}
</style>
二、内边距: padding
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
div {
width: 500px;
height: 500px;
}
div {
border: 1px solid red;
4个边 padding: 0px; 上下 左右 padding: 0px 20px; 上 左右 下 padding: 0px 20px 30px; 上 右 下 左 padding: 0px 20px 30px 40px;
三、外边距: margin
注意:元素的下边距和另一个元素的上边距会合并 外边距 margin
可以让元素左右居中 例如:margin:0px auto; (auto 自动)
margin-top:10px; margin-bottom:10px; margin-left:10px; margin-right:10px;
平移这个元素位置的一半 :transform: translate(-50%,0px); 左右 上下居中