<h3>Switzerland</h3>
<div class="flag switzerland"></div>
* {
box-sizing: border-box;
margin: 0;
}
body {
width: 100%;
height: 100vh;
background-color: rgb(221, 239, 255);
display: grid;
place-items: center;
font-family: cursive;
font-weight: bold;
}
h3 {
position: absolute;
text-align: center;
top: 20px;
}
/* Main Style Stars from here */
.flag {
position: relative;
width: 300px;
height: 200px;
box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
overflow: hidden;
}
.switzerland {
background: #fe0000;
display: grid;
place-items: center;
}
.switzerland::before {
position: absolute;
content: "";
width: 125px;
aspect-ratio: 1;
background-color: white;
clip-path: polygon(
0 35%,
35% 35%,
35% 0%,
65% 0%,
65% 35%,
100% 35%,
100% 65%,
65% 65%,
65% 100%,
35% 100%,
35% 65%,
0 65%
);
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.