Notice
Recent Posts
Recent Comments
Link
투케이2K
82. (html/css/javascript/jquery) text-shadow 사용해 텍스트 글자 그림자 효과 적용 실시 본문
FrontEnd
82. (html/css/javascript/jquery) text-shadow 사용해 텍스트 글자 그림자 효과 적용 실시
투케이2K 2021. 8. 26. 08:49[개발 환경 설정]
개발 툴 : Edit++
개발 언어 : html, css, js, jquery
[소스코드]
<body>
<!--
[div layout 주요 스타일]
1. display: table; : p 태그 텍스트를 수직 정렬을 실시하기 위함
2. table-layout: fixed; : p 태그 텍스트 영역 초과시 히든 처리 위함
-->
<!--
[p 태그 주요 스타일]
1. display: table-cell; : p 태그 텍스트를 수직 정렬을 실시하기 위함
2. vertical-align: middle; : p 태그 텍스트를 수직 중앙 정렬 실시
3. text-align: center; 수평 방향 기준으로 중앙으로 정렬을 실시합니다
4. text-shadow : 가로, 세로, 번짐, 색상 으로 설정합니다
-->
<div style="width: 70%; height : 20%; margin: 0 auto; padding: 0; border: 1px solid #000;
float: top; position: relative; top: 2%; left: 0%;
display: table; table-layout: fixed;">
<p style="display: table-cell; text-align: center; vertical-align: middle;
font-size: 25px; font-weight: bold;">
<span style="color: #00f;">[text-shadow: 1px 1px 1px #000;]</span><br>
<span style="color: #fff; text-shadow: 1px 1px 1px #000;">
text-shadow 를 사용해서 텍스트 글자에 그림자 표과 적용 실시
</span><br>
</p>
</div>
<div style="width: 70%; height : 20%; margin: 0 auto; padding: 0; border: 1px solid #000;
float: top; position: relative; top: 4%; left: 0%;
display: table; table-layout: fixed;">
<p style="display: table-cell; text-align: center; vertical-align: middle;
font-size: 25px; font-weight: bold;">
<span style="color: #00f;">[text-shadow: 2px 2px 2px #000;]</span><br>
<span style="color: #fff; text-shadow: 2px 2px 2px #000;">
text-shadow 를 사용해서 텍스트 글자에 그림자 표과 적용 실시
</span><br>
</p>
</div>
<div style="width: 70%; height : 20%; margin: 0 auto; padding: 0; border: 1px solid #000;
float: top; position: relative; top: 6%; left: 0%;
display: table; table-layout: fixed;">
<p style="display: table-cell; text-align: center; vertical-align: middle;
font-size: 25px; font-weight: bold;">
<span style="color: #00f;">[text-shadow: 2px 2px 5px #000;]</span><br>
<span style="color: #fff; text-shadow: 2px 2px 5px #000;">
text-shadow 를 사용해서 텍스트 글자에 그림자 표과 적용 실시
</span><br>
</p>
</div>
</body>
[결과 출력]
[요약 설명]
<!--
[div layout 주요 스타일]
1. display: table; : p 태그 텍스트를 수직 정렬을 실시하기 위함
2. table-layout: fixed; : p 태그 텍스트 영역 초과시 히든 처리 위함
-->
<!--
[p 태그 주요 스타일]
1. display: table-cell; : p 태그 텍스트를 수직 정렬을 실시하기 위함
2. vertical-align: middle; : p 태그 텍스트를 수직 중앙 정렬 실시
3. text-align: center; 수평 방향 기준으로 중앙으로 정렬을 실시합니다
4. text-shadow : 가로, 세로, 번짐, 색상 으로 설정합니다
-->
반응형
'FrontEnd' 카테고리의 다른 글
Comments