File tree Expand file tree Collapse file tree 3 files changed +21
-5
lines changed Expand file tree Collapse file tree 3 files changed +21
-5
lines changed Original file line number Diff line number Diff line change @@ -11,3 +11,7 @@ <h1>How to create a circle using a div</h1>
1111 < div >
1212</ body >
1313</ html >
14+ .circle {
15+ width: 500px;
16+ height: 500px;
17+ }
Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html lang ="en ">
3+ < head >
4+ < meta charset ="UTF-8 ">
5+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
6+ < title > Circle Example</ title >
7+ < link rel ="stylesheet " href ="style.css ">
8+ </ head >
9+ < body >
10+ < div class ="circle "> </ div >
11+ </ body >
12+ </ html >
Original file line number Diff line number Diff line change 11.blue {
2- background-color : blue
2+ background-color : blue
33}
44.circle {
5- border-radius : 50% ;
6- width : 300 px ;
7- height : 300 px ;
8- }
5+ border-radius : 50% ;
6+ width : 500 px ;
7+ height : 500 px ;
8+ }
You can’t perform that action at this time.
0 commit comments