일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- FileZilla설치
- calc.minus
- 주석이 먹히지 않을 때
- index %
- slideUp
- 1521
- FileZilla다운로드
- selectedIndex
- Parent
- SUB함수
- push오류
- Math.floor()
- 파일질라설치
- calc.plus
- 소스트리인증실패
- Excel
- hide
- 파일질라설치오류
- 파일질라다운로드
- Math.ceil()
- is_check
- Git
- removeClass
- excel중복체크
- addClass
- ctrl+/
- selectoptions
- toFixed()
- Math.round()
- 증가값
- Today
- Total
잡동사니에도 사랑을
[21.09.17] exam07(05_cssPositioning) - 각기 다른 위치에 글씨 넣기(display, position, border 설정) 본문
[21.09.17] exam07(05_cssPositioning) - 각기 다른 위치에 글씨 넣기(display, position, border 설정)
luvforjunk 2021. 9. 17. 19:03<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
div {
display: inline-block;
position: absolute;
border: 1px solid lightgray;
}
div > p {
display: inline-block;
position: absolute;
width: 15px;
height: 20px;
background: lightgray;
margin: 0;
}
</style>
</head>
<body>
<h3>Merry Christmas!</h3>
<hr>
<p>메리 크리스마스</p>
<div>
<img src="../img/christmastree.png" width="200" height="200" alt="크리스마스 트리">
<p style="left: 50px; top: 30px;">M</p>
<p style="left: 100px; top: 0px;">E</p>
<p style="left: 100px; top: 80px;">R</p>
<p style="left: 150px; top: 110px;">R</p>
<p style="left: 30px; top: 130px;">Y</p>
</div>
</body>
</html>
'JAVA_EE > CSS' 카테고리의 다른 글
[21.09.17] exam09(05_cssPositioning) - 이미지 겹쳐서 배치(z-index 활용) (0) | 2021.09.17 |
---|---|
[21.09.17] exam08(05_cssPositioning) - 화면을 기준(fixed)으로 자리 배치 (0) | 2021.09.17 |
[21.09.17] exam06(05_cssPositioning) - 상대 배치 (0) | 2021.09.17 |
[21.09.17] exam05(05_cssPositioning) - (0) | 2021.09.17 |
[21.09.17] exam04(05_cssPositioning) - float / text-align: justify(양쪽정렬) (0) | 2021.09.17 |