en.javascript.info/2-ui/2-events/02-bubbling-and-capturing/both.view/example.css
Ilya Kantor ab9ab64bd5 up
2017-03-21 14:41:49 +03:00

33 lines
No EOL
444 B
CSS

form {
background-color: green;
position: relative;
width: 150px;
height: 150px;
text-align: center;
cursor: pointer;
}
div {
background-color: blue;
position: absolute;
top: 25px;
left: 25px;
width: 100px;
height: 100px;
}
p {
background-color: red;
position: absolute;
top: 25px;
left: 25px;
width: 50px;
height: 50px;
line-height: 50px;
margin: 0;
}
body {
line-height: 25px;
font-size: 16px;
}