0

やあ、

デザインをコード化しようとしていますが、何を試しても正しく配置できません。同じ場所にうまく収まりません。

これがどのように見えるかです

http://postimg.org/image/tuctjuglz/

これは、それがどのようなものであるかを意味します

http://postimg.org/image/4aajdev87/

これが私のコードです。うまくいけば修正できます。

<!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" />
<title>a</title>
<link rel="stylesheet" type="text/css" href="style/css/reset.css"/>
<style>
body {
color:#ffffff;
background:#1f1f1f url(style/images/background.png) repeat-x center top;
}

.profileMidSection {
height:239px;
width:860px;
color:#ffffff;
background:#2e2e2e;
clear:both;
}

ul.profileMidSection {
list-style:none;
vertical-align:middle;
line-height:47px;
}

ul.profileMidSection li {
height:47px;
vertical-align:middle;
clear:both;
}

ul.profileMidSection li a{
height:47px;
width:175px;
background:#333333;
text-decoration:none;
color:#737373;
float:left;
text-align:left;
padding-left:25px;
font-family: 'Open Sans', sans-serif;
font-weight:600;
font-size:10.5pt;
margin-left:-40px;
}

ul.profileMidSection li a:hover{
color:#ffffff;
border-left:3px solid #83bdf2;
width:172px;
}

.profileCaption {
background:#3c3c3c;
width:200px;
height:35px;
font-family: 'Open Sans', sans-serif;
font-weight:600;
font-size:11pt;
color:#ffffff;
border-radius:0 0 4px 4px;
-webkit-border-radius:0 0 4px 4px;
}
</style>
</head>

<body>
    <div class="profileMidSection">

        <ul class="profileMidSection">
            <li><a href="#">Recommended Games</a></li>
            <li style="margin-top:1px;"><a href="#">Your Friends Played</a></li>
            <li style="margin-top:1px;"><a href="#">You Liked</a></li>
            <li style="margin-top:1px;"><a href="#">Your Friends Liked</a></li>
            <li style="margin-top:1px;"><a href="#">Disliked</a></li>
        </ul>

          <img src="games/images/caption1.png" />
          <div class="profileCaption">Angry Birds&trade;</div>
          <img src="games/images/caption2.png" />
          <div class="profileCaption">Mario Kart Pro&trade;</div>    
          <img src="games/images/caption3.png" />
          <div class="profileCaption">Lazy&trade;</div>    
    </div>
</body>
</html>
4

1 に答える 1

0

divのようなクラスで各画像とキャプションをラップしgame-thumb、クラスを左にフロートします。次に、すべてのゲームを別のdiv容器に入れ、その上にセットoverflow:hiddenします。

于 2013-04-27T16:48:46.000 に答える