Page 1 of 1

DOM 펼침메뉴 생성

Posted: 2005 03 17 07:47 27
by resna
<br />태더툴즈(http://www.tattertools.com) 사용자입니다.

http://nahonja.net/skin_test/index.php 의 스킨을 표준에 맞게 수정하고 있는데,

이곳의 category 펼침메뉴를 어떻게 수정해야 할지 몰라 질문 올립니다.

다른 부분은 전부 수정했는데, 이건 도저히 모르겠습니다. :cry:

category의 HTML/CSS는 다음과 같습니다.

<div id="category" pos="222">
[div category blah blah blah...]
</div>

#category
{
position:absolute;
left:expression((document.body.clientWidth-this.style.width)/2-this.getAttribute("pos"));
}

<br />

비표준 확장입니다.

Posted: 2005 03 17 09:15 50
by 박민권

Code: Select all

left:expression((document.body.clientWidth-this.style.width)/2-this.getAttribute("pos"));
w3c의 CSS 인덱스에서 찾아봐도 존재하지 않으며 구글에서 검색해본 결과

Expression does not work except in IE. It is a non-standard extension.

익스전용이며 표준이 아닌 확장이랍니다.

자바스크립트를 통해 처리하셔야 될 것 같습니다.