博客列表 >2019年12月23日作业

2019年12月23日作业

涡流
涡流原创
2019年12月25日 18:28:13749浏览

用flex做了一个仿火狐的首页,费了老大的劲。
flex现在学到的知识不多,还好理解。
标签选择器尝试了很多次才成功
header > .search > .formstyle input[type=”text”] 比如这种,还理解得不够。

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>仿火狐首页</title>
  6. <style>
  7. * {
  8. margin: 0;
  9. padding: 0;
  10. font-size: 16px;
  11. font-family: '微软雅黑', Verdana, sans-serif;
  12. /* outline: 2px dashed red; */
  13. }
  14. a:link, a:visited, a:hover, a:active {
  15. text-decoration:none;
  16. color: steelblue;
  17. }
  18. a:hover {
  19. color: red;
  20. font-weight: bold;
  21. }
  22. header {
  23. margin: 20px auto;
  24. box-sizing: border-box;
  25. box-sizing: content-box;
  26. display: flex;
  27. }
  28. main {
  29. width: 1020px;
  30. margin: auto;
  31. box-sizing: border-box;
  32. box-sizing: content-box;
  33. display: flex;
  34. flex-wrap: wrap;
  35. }
  36. header > .search {
  37. height: 40px;
  38. margin: 20px auto;
  39. box-sizing: border-box;
  40. box-sizing: content-box;
  41. }
  42. header > .search > .formstyle input[type="text"] {
  43. width: 380px;
  44. height: 34px;
  45. border-radius: 8px;
  46. }
  47. header > .search > .formstyle .button {
  48. width: 120px;
  49. height: 40px;
  50. border-radius: 8px;
  51. text-align: center;
  52. }
  53. header > .search > .formstyle .button:hover {
  54. font-weight: bolder;
  55. cursor: pointer;
  56. }
  57. main > .box {
  58. width: 235px;
  59. height: 160px;
  60. margin: 10px;
  61. box-sizing: border-box;
  62. box-sizing: content-box;
  63. display: flex;
  64. justify-content: space-around;
  65. border-radius: 10px;
  66. }
  67. main > .box > .txt {
  68. width: 240px;
  69. height: inherit;
  70. border: 2px solid darkcyan;
  71. line-height: 160px;
  72. text-align: center;
  73. font-size: 48px;
  74. border-radius: 10px;
  75. }
  76. </style>
  77. </head>
  78. <body>
  79. <header>
  80. <div class="search">
  81. <form action="https://www.baidu.com/s" target="_blank" class="formstyle"><input class="form" type="text" name="wd"><input type="submit" class="button" value="百度搜索"></form>
  82. </div>
  83. </header>
  84. <main>
  85. <div class="box"><a href="https://www.baidu.com" class="txt">百度</a></div>
  86. <div class="box"><a href="https://www.sina.com.cn" class="txt">新浪网</a></div>
  87. <div class="box"><a href="https://www.php.cn" class="txt">php中文</a></div>
  88. <div class="box"><a href="https://www.iqiyi.com" class="txt">爱奇艺</a></div>
  89. <div class="box"><a href="https://www.taobao.com" class="txt">淘宝网</a></div>
  90. <div class="box"><a href="https://www.jd.com" class="txt">京东商城</a></div>
  91. <div class="box"><a href="https://www.vip.com" class="txt">唯品会</a></div>
  92. <div class="box"><a href="https://www.ctrip.com" class="txt">携程旅行</a></div>
  93. </main>
  94. </body>
  95. </html>
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议