本帖最后由 shishunfu 于 2017-4-28 10:42 编辑
交作业<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hero Unit2</title>
<style type="text/css">
p {
color: rgba(255, 255, 255, .7);
}
h1 {
color: #FFF;
margin: 10px auto;
font-size: 55px;
}
.HeroUnit {
width: 900px;
height: 400px;
background-color: #000;
text-align: center;
padding: 55px 66px;
box-sizing: border-box;
position: relative;
}
/*img,.content{
position: absolute;
top: 50%;
transform: translateY(-50%);
}
img{
left: 10%;
}
.content{
left: 20%;
width: 70%;
}*/
img,.content,.content h1{
position: absolute;
/*top: 50%;
transform: translateY(-50%);*/
}
.content{
left: 5%;
width: 80%;
top: 100px;
}
.content h1{
left: 105%;
top: -100px;
}
img{
left: 5%;
}
</style>
</head>
<body>
<div class="HeroUnit">
<img src="eg_cute.gif">
<div class="content">
<h1>编程&撸铁</h1>
<p>想着要赢得比赛不会给你力量,在锻炼中挣扎力量才会增长,当你克服困难不想放弃时,这就是力量。
强壮的人比弱小的人更难杀死,总体上也更有用。
钢铁永远不会对你撒谎。
如果你出去走一圈,听其他人的谈话,你会听到人们口中的你有如天神,或者是个混球。
最老实的只有钢铁。
钢铁是伟大的参照点,无所不知的它会告诉你所有信息。
就像漆黑一片的大海中永远矗立在那里的灯塔,我发现钢铁是我最好的朋友。
永远不会对我撒气,永远不会离开我。
朋友们也许分分合合, 但是200磅的钢铁永远是200磅。
</p>
</div>
</div>
</body>
</html>
|