Computer >> Máy Tính >  >> Lập trình >> CSS

Làm thế nào để tạo CSS3 Rounded Corners?

Để tạo các góc tròn, hãy sử dụng thuộc tính border-radius trong CSS3. Sau đây là mã để tạo các góc tròn -

Ví dụ

<!DOCTYPE html>
<html>
<head>
<style>
body {
   font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
div {
   display: inline-block;
   width: 200px;
   height: 200px;
   text-align: center;
   font-size: 30px;
}
.rounded {
   border-radius: 24px;
   border: 4px solid green;
}
.normal {
   border: 4px solid green;
   margin-left: 20px;
}
</style>
</head>
<body>
<h1>CSS3 rounded corner example</h1>
<div class="rounded">Rounded Corners</div>
<div class="normal">Default corners</div>
</body>
</html>

Đầu ra

Đoạn mã trên sẽ tạo ra kết quả sau -

Làm thế nào để tạo CSS3 Rounded Corners?