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

Làm thế nào để tạo vòng kết nối trống với CSS?


Để tạo vòng kết nối trống bằng CSS, mã như sau -

Ví dụ

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
   body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      margin: 20px;
   }
   .circle {
      height: 25px;
      width: 25px;
      background-color: rgb(52, 15, 138);
      border-radius: 50%;
      display: inline-block;
   }
   div :nth-of-type(2n) {
      background-color: red;
   }
</style>
</head>
<body>
<h1>Round dots example</h1>
<div>
<span class="circle"></span>
<span class="circle"></span>
<span class="circle"></span>
<span class="circle"></span>
</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 vòng kết nối trống với CSS?