Page Widget - 如何創(chuàng)建Minihome橫幅
我們想知道如何創(chuàng)建Minihome橫幅。
<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.tie-title {
overflow: hidden;
position: relative;
height: 150px;
width: 570px;
margin: 0;
padding: 0;
}
.tie-title img {
z-index: 0;
}
.tie-title h2 {
position: absolute;
left: 5%;
bottom: 5%;
z-index: 1;
color: #fff;
font-size: 19.5px;
font-weight: 400;
width: 78%;
}
</style>
</head>
<body>
<div id="tie-title" class="tie-title">
<h2>Science</h2>
<img src="http://placehold.it/600x200" />
</div>
</body>
</html>