CSS
 Computer >> コンピューター >  >> プログラミング >> CSS

CSSパースペクティブプロパティの使用


3D要素の表示方法に関するパースペクティブを指定するには、CSSパースペクティブプロパティを使用します。

次のコードを実行して、パースペクティブプロパティを操作できます。

<!DOCTYPE html>
<html>
   <head>
      <style>
         .demo1 {
            position: relative;
            width: 150px;
            height: 150px;
            background-color: yellow;
            perspective: 80px;
            margin: 50px;
         }
         .demo2 {
            position: absolute;
            padding: 20px;
            background-color: orange;
            transform-style: preserve-3d;
            transform: rotateX(45deg);
         }
      </style>
   </head>
   <body>
      <h1>Rotation</h1>
      <div class = "demo1">Demo
         <div class = "demo2">Demo</div>
      </div>
   </body>
</html>

  1. CSSでのborder-left-widthプロパティの使用

    border-left-width プロパティは、左の境界線の幅を変更します。次のコードを実行して、 border-left-widthを実装してみてください。 プロパティ: 例 <html>    <head>    </head>    <body>       <p style = "border-left-width:6px;border-style:solid;">       &nb

  2. CSSのlist-style-typeプロパティの使用法

    list-style-type マーカーの形状や外観を制御できます。次のコードを実行して、 list-style-typeを実装してみてください。 プロパティ 例 <html>    <head>    </head>    <body>       <ul style = "list-style-type:circle;">          <li>India