• HTML5+CSSday4综合案例二——banner效果


     bannerCSS展示图:

     

    1. html>
    2. <html lang="en">
    3. <head>
    4. <meta charset="UTF-8">
    5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
    6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
    7. <title>banner效果title>
    8. <style>
    9. .banner {
    10. height: 500px;
    11. background-color: #f3f3f4;
    12. background-image: url(./images/bk.png);
    13. background-repeat: no-repeat;
    14. background-position: left bottom;
    15. /* 文字控制属性,继承给子级 */
    16. text-align: right;
    17. color: #333;
    18. }
    19. /* 尽量不直接用标签选择器,可能导致样式冲突,明确继承关系不容易出错 */
    20. .banner h2 {
    21. font-size: 36px;
    22. font-weight: 400;
    23. line-height: 100px;
    24. }
    25. .banner p {
    26. font-size: 20px;
    27. }
    28. .banner a {
    29. width: 125px;
    30. height: 40px;
    31. background-color: #f06b1f;
    32. display: inline-block;
    33. /* 转块级无法右对齐,因为块元素独占一行 */
    34. /* display: block; */
    35. text-align: center;
    36. line-height: 40px;
    37. color: #fff;
    38. text-decoration: none;
    39. font-size: 20px;
    40. }
    41. style>
    42. head>
    43. <body>
    44. <div class="banner">
    45. <h2>让创造产生价值h2>
    46. <p>我们希望小游戏平台可以提供无限的可能性,让每一个创作者都可以将他们的才华和创意传递给用户。p>
    47. <a href="#">我要报名a>
    48. div>
    49. body>
    50. html>

     

    效果展示图:

     

     tips:

            1.在写CSS样式尽量不直接用标签选择器,可能导致样式冲突,明确继承关系不容易出          错.banner h2{}        

            2. 此题要使用display: inline-block;

          /* 转块级无法右对齐,因为块元素独占一行 */

          /* display: block; 不正确*/

  • 相关阅读:
    pytorch-Normalization
    LeetCode 刷题 [C++] 第98题.验证二叉搜索树
    JVM类加载和垃圾回收
    mybatis-plus yml配置
    怎么做好品牌营销,小红书爆款笔记怎么做?
    2022年11月PMP考试如何办理缓退考?攻略在这里!
    C++基础入门
    集成学习方法之随机森林-入门
    抖音矩阵系统。抖音矩阵系统。抖音矩阵系统。
    EFCore常规操作生成的SQL语句一览
  • 原文地址:https://blog.csdn.net/m0_63949203/article/details/133686433