ul에 링크 걸기(?) 가능한가여?
서향
대략 구조가
ul class=section01
li class=title기획의도/li
li class=th_imgimg src=images/program_info_01/L_01.png alt= width=401 height=235 alt=기획의도/li
li class=text_box a href=sub_plan.html 18살,질풍노도의 시기를 겪는 ......../a/li
/ul이런식의 구조이고 방식은
포지션 방식으로 작성 하였습니다. [특정 기종에만 서비스 제공 ]
.section01 .title{ position:absolute; top:94px; left:33px; }
.section01 .th_img{ position:absolute; top:137px; left:33px; }
.section01 .text_box{ position:absolute; top:137px; left:452px; }
==============================================================링크를 텍스트 전체에 걸어 달라는요청이 있어서
li a{display:block;width:100%;height:100%;}
처리 했는데......몇일 후......
==============================================================전체를 링크 시켜 달라는 요청이 왔습니다.
다시 코딩하면 가능 하지만 원낙 양이 많아서.....
li a {display:block;width:100%;height:100%;} 처럼 링크 전체를 잡아 주는 방법이 있는지 궁금합니다.
==============================================================
-
사람
자문 자답(?)인데
li class=\title\기획의도/li의
.section01 .title { position:absolute; top:94px; left:33px; } 부분을
.section01 .title { position:absolute; top:94px; left:33px; width:600px; height:200px; }
이런식으로 넓이와 높이를 주고 z-index로 상위로 올리고
li a {display:block;wid -
제미니
아마 제목을 제외한 나머지를 링크 해달라고 하는거 같은데
그냥
lia href=\\#spanimg/spanspantext/span/a/li
style
a {display: block;} 대충 이런식으로 추천해드려요 -
가자
코드를 좀 고치면 가능하겠는데...50여개 정도 되서 ㅌㅌ
li a {display:block;width:100%;height:100%;} 이것 처럼 간단히 할수 있는 방법을 찾고 있어요 ~! -
무들
a안에 블럭은 들어올수 없습니다.
html5는 가능하구요