실행 소스 |
<?xml version="1.0" encoding="EUC-KR" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=EUC-KR" /> <title>div로 레이아웃 잡기</title> <style type="text/css"> .content { position: absolute; margin-left: 155px; width: 640px; }
.menu { position: absolute; width: 150px; }
/* div { border: thin red solid; } */ .out { width: 800px; margin: 0px auto; /* 위아래 0px, 좌우 auto */ } div.menu ul { list-style: none; padding: 0px; margin: 0px; }
div.menu ul li a:HOVER { background-color: #ddd; } div.menu ul li a:LINK, a:VISITED { text-decoration: none; }
</style> </head> <body> <div class="out"> <div class="menu"> <ul> <li><a href="http://www.rimi.kr/files/attach/images/107279/461596/34e6d7471262a91f95b752af2e0624db.jpg" target="_blank">꽃게탕</a></li> <li><a href="http://cfs8.tistory.com/image/9/tistory/2008/07/15/13/40/487c2a59d370f" target="_blank">스테이크</a></li> <li><a href="">깐풍기</a></li> <li><a href="">탕수육</a></li> <li><a href="">타르트</a></li> </ul> </div> <div class="content"> <img src="sistar.jpg" alt="씨스타" width="150" /> 은석은 태연이 옆에 있으면 '사귀자'라고 한다고 했다. </div> </div>
</body> </html>
|
실행 결과 |
은석은 태연이 옆에 있으면 '사귀자'라고 한다고 했다. |
'Dev. 웹 > CSS' 카테고리의 다른 글
[CSS] Text - 글자에 지정되는 css 서식 (0) | 2014.10.31 |
---|---|
표준 지원 색상 ( 17가지 기준 색상 포함 - 한글명 표기) (0) | 2014.10.27 |
[HTML/CSS 예제] 구역 위치(position), 이미지 가져오기 (0) | 2012.09.12 |
[CSS 예제] 마우스 위치에 따른 글자 효과주기 (0) | 2012.09.12 |
[CSS 예제] border, padding, margin, font.. (0) | 2012.09.12 |