Skip to content

Commit 03a6e96

Browse files
committed
task12
1 parent 06a05fd commit 03a6e96

File tree

1 file changed

+18
-4
lines changed

1 file changed

+18
-4
lines changed

liveserver/myFirstProject/i3.html

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@
66
<meta http-equiv="X-UA-Compatible" content="IE=edge">
77
<meta name="viewport" content="width=device-width, initial-scale=1.0">
88
<title>Блок (задание 9)</title>
9-
</head>
10-
11-
<body>
129
<style>
1310
body {
1411
background: grey;
@@ -25,8 +22,25 @@
2522
box-shadow: 0 0 25px;
2623
border-radius: 40px;
2724
}
25+
26+
.block2 {
27+
width: 450px;
28+
height: 450px;
29+
margin: auto;
30+
background: dodgerblue;
31+
border-radius: 50%;
32+
border: 15px double green;
33+
}
2834
</style>
29-
<div class="block">Hello World!</div>
35+
</head>
36+
37+
<body>
38+
<div class="block2">
39+
<div class="block">
40+
Hello World!
41+
42+
</div>
43+
</div>
3044
</body>
3145

3246
</html>

0 commit comments

Comments
 (0)