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;}
   .image-container {
      background-image: url("https://images.pexels.com/photos/957024/forest-trees-perspective-bright-957024.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940");
      background-size: cover;
      position: relative;
      height: 300px;
   }
   .text {
      background-color: rgb(0, 0, 0);
      color: rgb(255, 255, 255);
      font-size: 10vw;
      font-weight: bold;
      margin: 0 auto;
      padding: 10px;
      width: 50%;
      text-align: center;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      mix-blend-mode: multiply;
   }
</style>
</head>
<body>
<h1 style="text-align: center;">Responsive Cutout Text Example</h1>
<div class="image-container">
<div class="text">FOREST</div>
</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