CSS Shapes and Dev Tool in Chrome

preview_player
Показать описание
Make a simple CSS shape and modify it in Chrome's developer tool.
Рекомендации по теме
Комментарии
Автор

<html>
<head>
<title>CSS Shape</title>
<style>
div.roundedCorner {
border-radius: 15px 50px 20px;
background: #92cddc;
width: 200px;
height: 150px;
border:none;
margin:0 auto;
}
</style>
</head>
<body>
<h1>Make shapes with CSS</h1>
<div class="roundedCorner"></div>
</body>
</html>

ChuweiLu