WEBページ作成リファレンス
cman.jp cman.jp > WEBページ作成TOP > CSSリファレンス > 「子要素の奥行きの指定」

perspective 「奥行きの指定」

「perspective」は「transform:perspective(値)」と同じ奥行きの表現を指定します。「transform:perspective(値)」との違いは、子要素に指定の奥行きが適用されることです。

CSS Ver.適用要素継承
3.0全要素しない
広告

perspectiveの指定方法

構文

perspective : ;

プロパティ/設定値意味
perspective : ; 奥行きの指定
長さ・大きさの単位参照
デフォルト:「タグ毎のスタイル初期値」を参照
ページTOP

perspective のサンプル


<style type="text/css">
.parentDiv{
        border      : 1px solid #ccc;
        padding     : 40px 0;
        width       : 300px;
}
.childDiv{
        margin      : 0 auto;
        width       : 60px;
        height      : 60px;
        transform  : rotateY(20deg);
}

<!-- html -->
<div class="parentDiv" style="perspective : 50px;">
    <div class="childDiv" style="background:rgb(176, 224, 230)"></div>
    <div class="childDiv" style="background:rgb(255, 193, 139)"></div>
</div>
<div class="parentDiv">
    <div class="childDiv" style="background:rgb(176, 224, 230)"></div>
    <div class="childDiv" style="background:rgb(255, 193, 139)"></div>
</div>
広告
QrCode
このページのURL
スマートフォン・タブレット運営 : CMAN 株式会社シーマン