私は2つの画像を持っています。 1つはうまく動き、フロートを使用しました。私はそのdivの花を呼び出しました。しかし、2番目の画像は動きたくない。私はそのdivを「野蛮な」と呼んだ。私はそれを右に浮かべたので、うまくいきました。問題はそれをより高くすることです。私はposition:absolute、position:relative、そしてbottomとtopを使って試しました。それは動きたくない。私はマージン、パディングを試していて、おそらく他のマージンが途中であったかもしれないと思っている。何もない。ここで画像が上に移動しませんか?
は、それが見ているかのSCREENCAPである:ここで
はhtmlコードです:
<!DOCTYPE html>
<html>
<head>
<title>question reality.</title>
<link rel="stylesheet" type="text/css" href="intro-page.css">
</head>
<body>
<div class="container">
<center>
<img src="https://i.imgur.com/10iUAyi.gif">
</center>
</div>
<div class="text-center">
<div class="light">
<button>
<a href="http://google.com">Light</a>
</button>
</div>
</button>
<div class="dark">
<button>
<a href="http://google.com">Dark</a>
</button>
</div>
</div>
<div class="flowers">
<img src="https://i.imgur.com/rOLqQ48.jpg">
</div>
<div class="barbed">
<img src="https://i.imgur.com/SukIIZ6.jpg">
</div>
</body>
</html>
、ここでは、CSSです:
body{
background-color:black;
}
.text-center{
margin-left:580px;
}
.container{
padding-top:200px;
}
.light a{
color:black;
text-decoration:none;
}
.light a:hover{
background-color:black;
color:white;
padding:5px;
}
.light button{
background-color:white;
color:black;
font-size: 30px;
border-radius: 12px;
float:left;
}
.dark a{
color:white;
text-decoration:none;
}
.dark a:hover{
background-color:white;
color:black;
padding:2px;
}
.dark button{
background-color:black;
color:white;
font-size:30px;
border-radius:12px;
float:left;
margin-left:15px;
}
.dark{
text-align:center;
}
.light{
text-align:center;
}
.flowers{
float:left;
width:100%;
position:absolute;
bottom:100px;
left:200px;
}
.barbed{
float:right;
width:100%
position:absolute;
bottom:300px;
}
それは笑いつも私が欠けているセミコロンのような愚かなささいなことです。修正しなければならないコードの欠陥について教えていただきありがとうございます。私は間違いなく初心者で、このように私をより良くする情報です。 –