|
发表于 2020-1-9 23:05:01
|
显示全部楼层
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no"/>
- <title>双列自适应</title>
- <style type="text/css">
- *{
- margin: 0;
- padding: 0;
- }
- .page{
- width:100%;
- background: #000000;
- position: relative;
- padding-left: 333px;
- box-sizing: border-box;
- }
- .side{
- padding: 33px;
- width: 444px;
- height: 1555px;
- background: #F88;
- position: absolute;
- left: 0;
- }
- .side img{
- width:222px;
- }
- .main{
- padding: 55px;
- width: 100%;
- height: 1555px;
- background: #FF88C2;
- }
- .main img{
- margin-top: 200px;
- }
- .side,.main{
- text-align: center;
- font-family: "Comic Sans MS", cursive;
- color: #FFF;
- box-sizing: border-box;
- }
- .main h1{
- font-size: 55px;
- font-family: "SimSun";
- }
- .main p{
- font-size: 22px;
- }
- .side img{
- margin-bottom: 33px;
- }
- .side button{
- background: #F39C12;
- border: none;
- border-radius: 3px;
- padding: 2px 40px;
- margin-top: 33px;
- font-size: 18px;
- }
- </style>
- </head>
- <body>
- <div class="page">
- <div class="side">
- <img src="3.png" alt="Flowers">
- <h2>When you are old</h2>
- <p>When you are old and grey and full of sleep,<br>
- 当你老了,头发花白,睡意沉沉,<br><br>
- And nodding by the fire,take down this book,<br>
- 倦坐在炉边,取下这本书来,<br><br>
- And slowly read,and dream of the soft look<br>
- 慢慢读着,追梦当年的眼神<br><br>
- Your eyes had once,and of their shadows deep;<br>
- 你那柔美的神采与深幽的晕影。<br><br>
- How many loved your moments of glad grace,<br>
- 多少人爱过你昙花一现的身影,<br><br>
- And loved your beauty with love false or true,<br>
- 爱过你的美貌,以虚伪或真情,<br><br>
- But one man loved the pilgrim Soul in you<br>
- 惟独一人曾爱你那朝圣者的心,<br><br>
- And loved the sorrows of your changing face;<br>
- 爱你哀戚的脸上岁月的留痕。<br><br>
- And bending down beside the glowing bars,<br>
- 在炉罩边低眉弯腰,<br><br>
- Murmur,a little sadly,how Love fled<br>
- 忧戚沉思,喃喃而语,<br><br>
- And paced upon the mountains overhead<br>
- 爱情是怎样逝去,又怎样步上群山,<br><br>
- And hid his face amid a crowd of stars.<br>
- 怎样在繁星之间藏住了脸。</p>
- <button>
- 鱼C-苏十八
- </button>
- </div>
- <div class="main">
- <img src="2.png" alt="Fun">
- <h1>爱情</h1>
- <p>爱情就美在风险和运气,我们将自身转向了未知、神秘。</p>
- </div>
- </div>
- </body>
- </html>
复制代码 |
|