「スキップ - 私は決めることができません」Aprearは黒い矩形の中央を底にしています。 Iveはこれを正しく行うためにCssに苦労しました。あなたは私のCSSを修正する方法を指摘できますか?div内のdiv div整列
defaultpage
<div id="pictures">
<div id="MainPics">
<div id="RightPic">
<p>
<asp:Label ID="FirstPicMemberNameLabel" runat="server" Text="" Font-Bold="True" ForeColor="White"></asp:Label>
</p>
<asp:ImageButton ID="FirstPicLink" Width="90%" runat="server" />
</div>
<div id="LeftPic">
<p>
<asp:Label ID="SecondPicMemberNameLabel" runat="server" Text="" ForeColor="White"
Font-Bold="True"></asp:Label>
</p>
<asp:ImageButton ID="SecondPicLink" Width="90%" runat="server" />
</div>
</div>
<div id="skip">
<a href="default.aspx">SKIP - I Cant Choose.</a></div>
</div>
のCss
div#pictures
{
}
div#MainPics
{
height: 650px;
width: 60%;
-moz-border-radius: 35px;
border-radius: 35px;
background-color: Black;
margin-left: auto;
margin-right: auto;
}
#RightPic
{
position: relative;
float: left;
width: 45%;
text-align: center;
}
#LeftPic
{
position: relative;
float: left;
width: 45%;
text-align: center;
}
div#skip
{
position: relative;
width: 50%;
margin-left: auto;
margin-right: auto;
text-align: center;
}
ASPを与えてはいけません。ブラウザのページに移動し、ソースの表示(通常は右クリックメニュー)に行き、投稿を更新します。 (私は[fiddle](http://jsfiddle.net/CLh6L/)でASPを使うことはできません)。 – FakeRainBrigand
ASPではなくHTMLとCSSを指定します。そうすれば、ユーザーはあなたをより迅速に手助けすることができます。 – techfoobar