“половина круга CSS” Ответ

половина круга CSS

div {
  width: 150px;
  height: 75px;
  border-bottom-left-radius: 510px;
  border-bottom-right-radius: 510px;
  background: #ECA03D;
}
JérômeW

Круг CSS

#circle {
  width: 100px;
  height: 100px;
  background: red;
  border-radius: 50%
}
Dayanaohhnana

половина круга дивизии

<!DOCTYPE html>
<html lang="en">
  
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content=
        "width=device-width, initial-scale=1.0">
  
    <title>Semi Circle</title>
  
    <style>
        * {
            margin: 0;
            padding: 0;
            background-color: white;
  
        }
  
        /* Using the border-radius property 
           to draw the semi-circle*/
        div {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            height: 100px;
            width: 200px;
            border-radius: 150px 150px 0 0;
            background-color: green;
        }
    </style>
</head>
  
<body>
    <div></div>
</body>
  
</html>
Clumsy Cobra

Ответы похожие на “половина круга CSS”

Вопросы похожие на “половина круга CSS”

Больше похожих ответов на “половина круга CSS” по CSS

Смотреть популярные ответы по языку

Смотреть другие языки программирования