Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS로 연락처 칩을 만드는 방법은 무엇입니까?


CSS로 연락처 칩을 만들려면 코드는 다음과 같습니다 -

예시

<!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:25px;
   }
   .chip {
      display: inline-block;
      padding: 0 25px;
      height: 50px;
      font-size: 20px;
      font-weight: bold;
      line-height: 50px;
      border-radius: 25px;
      background-color: #6a0074;
      color: white;
   }
   .chip img {
      float: left;
      margin: 0 10px 0 -25px;
      height: 50px;
      width: 50px;
      border-radius: 50%;
   }
</style>
</head>
<body>
<h1>Contact chip Example</h1>
<div class="chip">
<img src="https://cdn.pixabay.com/photo/2016/08/08/09/17/avatar-1577909__340.png">
James Anderson
</div>
<div class="chip">
<img src="https://cdn.pixabay.com/photo/2014/03/24/17/19/teacher-295387__340.png">
Britney Smith
</div>
</body>
</html>

출력

위의 코드는 다음과 같은 출력을 생성합니다 -

CSS로 연락처 칩을 만드는 방법은 무엇입니까?