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;
   }
   .testimonialContainer {
      border: 2px solid rgba(0, 0, 0, 0.363);
      background-color: rgb(207, 235, 218);
      border-radius: 5px;
      padding: 16px;
      margin: 16px 0;
   }
   .profilePic {
      width: 100px;
      height: 100px;
   }
   .testimonialContainer::after {
      content: "";
      clear: both;
      display: table;
   }
   .testimonialContainer img {
      float: left;
      margin-right: 20px;
      border-radius: 50%;
   }
   .testimonialContainer span {
      font-size: 24px;
      font-weight: 500;
      margin-right: 15px;
      color: purple;
   }
   .testimonialContainer p {
      font-size: 18px;
      font-style: oblique;
   }
   @media (max-width: 500px) {
      .testimonialContainer {
         text-align: center;
      }
      .testimonialContainer img {
         margin: auto;
         float: none;
         display: block;
      }
   }
</style>
</head>
<body>
<h1>Responsive Testimonials Example</h1>
<div class="testimonialContainer">
<img class="profilePic" src="https://images.pexels.com/photos/614810/pexels-photo614810.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500"/>
<span>James Anderson</span>
<p>Shawn is a hard working and comitted individual</p>
</div>
<div class="testimonialContainer">
<img class="profilePic" src="https://images.pexels.com/photos/2128807/pexels-photo2128807.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500"/>
<span>Steve Boulder</span>
<p>Shawn is great at managing people</p>
</div>
</body>
</html>

出力

上記のコードは次の出力を生成します-

CSSを使用してレスポンシブな証言を作成するにはどうすればよいですか?


  1. CSSを使用してレスポンシブブログレイアウトを作成するにはどうすればよいですか?

    CSSを使用してレスポンシブブログレイアウトを作成するためのコードは次のとおりです- 例 <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style>    * {       box-sizing: border-box;    }    body {

  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, Verdan