Code CSS như sau, các bạn có thể tùy biến theo ý mình:
#round {
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
width:250px;
background:#eeeeee;
border-color:#DEDEDE;
}
.round-content {
padding: 10px;
}
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
width:250px;
background:#eeeeee;
border-color:#DEDEDE;
}
.round-content {
padding: 10px;
}
Khi cần sử dụng hiệu ứng này, các bạn sử dụng thẻ <div> như sau:
<div id="round" class="round-content">
Nội dung
</div>
Nội dung
</div>
-moz-border-radius-topleft:10px;
-webkit-border-top-left-radius:10px;
-webkit-border-top-left-radius:10px;
Đoạn code này bo tròn góc trên bên trái, tương tự thay thế top -> bottom hoặc left -> right ở đoạn code màu xanh cho các góc khác.
0 nhận xét