x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>蜜蜂教程(mifengjc.com)</title>
6
<style>
7
#myDIV {
8
border: 1px solid black;
9
background-color: lightblue;
10
width: 270px;
11
height: 200px;
12
overflow: auto;
13
transition: all 5s;
14
transition: all 5s;
15
/* 针对 Safari */
16
}
17
18
#myDIV:hover {
19
background-color: coral;
20
width: 570px;
21
height: 500px;
22
padding: 100px;
23
border-radius: 50px;
24
}