CSS
 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でコンタクトチップを作成するにはどうすればよいですか?


  1. 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-seri

  2. 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;