web-dev-qa-db-ja.com

<a>タグを展開してスペースを埋めます

アンカータグをリストアイテムの下部に展開するにはどうすればよいですか?アンカーをリストアイテムタグの周りに配置できることはわかっていますが、これはXHTML 1.0の厳密なコンプライアンスに違反するため、実行できません。

<html>
  <head>
    <style>
      #listWrapper { text-align:center;}
      #list { margin-left: 0px auto; margin-right: 0px auto; width: 100%; min-height: 100%; height:100%; margin-bottom: 10px; margin-top: 0px;}
      #list ul { padding: 5px 10px 10px 10px; margin: 0; min-height: 100%;}
      #list li { clear:both; font-weight:bolder; height:auto; border-bottom: 1px solid Silver; border-left: 1px solid Silver; font-size:x-small; border-right: 1px solid Silver; list-style-type: none;}
      #list a:hover { background-color: red;}
      #list a { display:block; cursor:pointer; text-decoration: none; text-align:left; vertical-align:top; }
      #list h3 { background-color:Silver; vertical-align:top; font-size:larger; }
      #list img { height:auto; margin: 8px; float:left; vertical-align:top; border:solid 1px Silver;}   
    </style>
  </head>
  <body>
    <div id="listWrapper">
      <div id="list">
        <ul>
          <li>
            <h3>title</h3>
            <a href="#">
              <img src="/images/x.jpg" alt="" />
              Lorem ipsun........
            </a>
            <div style="clear:both;" />
          </li>
          <li>
            <h3>title</h3>
            <a href="#">
              <img src="/images/x.jpg" alt="" />
              Lorem ipsun........
            </a>
            <div style="clear:both;" />
          </li>
        </ul>
      </div>
    </div>
  </body>
</html>
22
simon831

あなたの答えの組み合わせがそれを修正しました。多くに感謝します..。

#list ul { display: block; }
#list li { display: block;}
#list a { display:block; height:100%; }
52
simon831

このCSSを使用してください:

#list ul li a { display: block }
11
soniiic

置く

<br style="clear: both;"/>

アンカータグ内。

編集:divをbrに変更

3
ZippyV

下を埋めるには、画像の余白を修正する必要があります-現在、画像は8pxの余白でスペースを使いすぎています。上を埋めるには、h3の下マージンを削除する必要があります。

#list h3 { margin-bottom: 0; }
#list img { margin: 5px 8px; }
1
Tomas Aschan

これが私がしたことです:

<!-- teh codes -->
<style type="text/css">
  .nav-cell
  {
    height: 35px;
    padding: 0px; /* just to make sure the link will fill the entire cell */
    text-align: center;
    width: 92px;
  }
  .nav-cell-link
  {
    display: block;
    width: 100%;
    height: 100%;
  }
  .nav-cell-link-text
  {
    display: block;
    padding-top: 11px;
  }
</style>
<!-- teh codes -->
<table cellpadding="0" cellspacing="0" style="height: 35px;">
  <tr>
    <td class="nav-cell">
      <a href="#" class="nav-cell-link">
        <span class="nav-cell-link-text">Link Text</span>
      </a>
    </td>
  </tr>
</table>
<!-- teh codes -->
0

#listの高さを固定サイズに、#list aの高さを100%に設定してみてください。

既存のコードとの違い:

    #list
    {
        min-height: 100px;
        height: 100px;
    }

    #list a
    {
         height:100%;
    }
0
awe