CSS :before :after 텍스트 겹치기 z-index

Jmnote (토론 | 기여)님의 2016년 12월 5일 (월) 20:50 판 (→‎개요)

1 개요

CSS :before :after 텍스트 겹치기 z-index
  • z-index: -1;(암튼 음수)을 주면 content가 텍스트보다 뒤에 위치하게 됨
  • 단, 배경색이 투명이 아니라면 배경에 가려서 안보임
<style>
  .box1:before {
    color: orange;
    content: "★";
    font-size: 3em;
    margin: -.6em 0 -1em 0;
    position: absolute;
  }

  .box2:before {
    color: skyblue;
    z-index: -1;
    content: "★";
    font-size: 3em;
    margin: -.6em 0 -1em 0;
    position: absolute;
  }

</style>

<div class='box1'>어쩌구</div>
<br><br>
<div class='box2'>어쩌구</div>

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}