• ベストアンサー
※ ChatGPTを利用し、要約された質問です(原文:liタグで先頭のみボーダーを消す方法)

liタグで先頭のみボーダーを消す方法

このQ&Aのポイント
  • liタグの先頭で一瞬ボーダーが見えてしまう問題の解決方法を教えてください。
  • yuga.jsを使用して最初の要素にclass="firstChild"、最後の要素にclass="lastChild"を付加することで、問題を解決することができます。
  • liの数をCMS上で動的に変化させることも可能です。

質問者が選んだベストアンサー

  • ベストアンサー
回答No.1

一瞬見えるのは、ページを完全に読み込んでから、消してるからかなぁ・・・。 これでも、一瞬見えますか? ul li:first-child { border-top: none; } /* first-child for IE */ ul li.first-child { border-top: none; } ul li { behavior: expression( this.className += ( ! this.previousSibling ) ? ' first-child' : null, this.style.behavior = 'none' ) ; } 参考 http://www.yomotsu.net/lab/css/iefirstchild

iroha_168
質問者

お礼

ご回答ありがとうございます。 ご教示いただいたソースを試したところ、現象が出なくなりました。 <!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=utf-8" /> <meta http-equiv="Content-Style-Type" content="text/css" /> <meta http-equiv="Content-Script-Type" content="text/javascript" /> <title>title</title> <style type="text/css"> <!-- body { margin-top:10px; } ul li:first-child { border-top: none; } /* first-child for IE */ ul li.first-child { border-top: none; } ul li { behavior: expression( this.className += ( ! this.previousSibling ) ? ' first-child' : null, this.style.behavior = 'none' ) ; } li { border-top:1px solid; } --> </style> </head> <body> <ul> <li>hoge1</li> <li>hoge2</li> <li>hoge3</li> </ul> <div><img src="Sunset.jpg" alt="" width="800" height="600" /></div> <div><img src="Winter.jpg" alt="" width="800" height="600" /></div> </body> </html> このたびはどうもありがとうございました。 以上、よろしくお願いします。

関連するQ&A