123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>电影卡片</title>
- <link rel="stylesheet" href="../css/reset.css">
- <link rel="stylesheet" href="../fa/css/all.css">
- <style>
- /* 设置外层容器 */
- .outer {
- width: 240px;
- margin: 100px auto;
- /* 设置阴影 */
- box-shadow: 0 0 10px rgba(0, 0, 0, .3);
- }
- /* 设置图片 */
- .img-wrapper img {
- width: 100%;
- vertical-align: bottom;
- }
- .info {
- padding: 0 18px;
- color: #acaaaa;
- font-size: 14px;
- }
- /* 设置标题 */
- .info .title {
- color: #717171;
- font-size: 18px;
- margin: 13px 0 15px 0;
- }
- .info .category i {
- margin-left: 4px;
- margin-right: 7px;
- }
- /* 设置简介的样式 */
- .info .intro {
- margin: 18px 4px;
- line-height: 20px;
- }
- /* 设置下边的内容 */
- .star-wrapper {
- height: 46px;
- line-height: 46px;
- border: 1px solid #e9e9e9;
- color: #ddd;
- padding: 0 16px;
- }
- /* 设置星星的样式 */
- .star-wrapper .star {
- float: left;
- }
- .star-wrapper .light{
- color: #b9cb41;
- }
- .star-wrapper .weibo{
- float: right;
- }
- </style>
- </head>
- <body>
- <!-- 创建一个外层容器 -->
- <div class="outer">
- <!-- 创建图片容器 -->
- <div class="img-wrapper">
- <!-- 设置图片 -->
- <img src="./images/1.jpg" alt="">
- </div>
- <!-- 创建内容区容器 -->
- <div class="info">
- <h2 class="title">动画电影</h2>
- <h3 class="category">
- <i class="fas fa-map-marker-alt"></i>
- 动画
- </h3>
- <p class="intro">迪士尼出的动画片,不知道好不好看</p>
- </div>
- <!-- 创建评分的容器 -->
- <div class="star-wrapper">
- <!-- 创建星星 -->
- <ul class="star">
- <li class="fas fa-star light"></li>
- <li class="fas fa-star light"></li>
- <li class="fas fa-star"></li>
- <li class="fas fa-star"></li>
- </ul>
- <ul class="weibo">
- <li class="fab fa-weibo"></li>
- </ul>
- </div>
- </div>
- </body>
- </html>
|