一款纯css3如何实现的漂亮的404页面的实例好代码教程

人生最好的旅行,就是你在一个陌生的地方,发现一种久违的感动。你在看孤独的风景,你在逃避我的真心!

  之前为大家分享了那些创意有趣的404页面。今天再给大家分享一款纯css3实现的漂亮的404页面。效果图如下:

  实现的代码。

  html代码:

XML/HTML Code复制内容到剪贴板
  1. <sectionclass="center">
  2. <article>
  3. <h1class="header">
  4. 404</h1>
  5. <pclass="error">
  6. ERROR</p>
  7. </article>
  8. <article>
  9. <imgsrc="vovg1x.png"alt="FunnyFace">
  10. </article>
  11. <article>
  12. <p>
  13. Lost?MaybeIcanhelp.</p>
  14. </article>
  15. <article>
  16. <formaction="">
  17. <inputtype="text"name="search"class="srchFld"placeholder="Whatareyoulookingfor?"
  18. required/>
  19. <buttontype="submit"class="srchBtn">
  20. Search</button>
  21. </form>
  22. </article>
  23. <article>
  24. <h3>
  25. MySuggestions.</h3>
  26. <ul>
  27. <li><arel="nofollow noopener noreferrer" href="">Home</a></li>
  28. <li><arel="nofollow noopener noreferrer" href="">Portfolio</a></li>
  29. </ul>
  30. </article>
  31. </section>

  css3代码:

CSS Code复制内容到剪贴板
  1. body
  2. {
  3. background-color:#0A7189;
  4. color:#fff;
  5. font:100%"Lato",sans-serif;
  6. font-size:1.8rem;
  7. font-weight:300;
  8. }
  9. a
  10. {
  11. color:#75C6D9;
  12. text-decoration:none;
  13. }
  14. h3
  15. {
  16. margin-bottom:1%;
  17. }
  18. ul
  19. {
  20. list-style:none;
  21. margin:0;
  22. padding:0;
  23. line-height:50px;
  24. }
  25. lia:hover
  26. {
  27. color:#fff;
  28. }
  29. .center
  30. {
  31. text-align:center;
  32. }
  33. /*SearchBarStyling*/
  34. form>*
  35. {
  36. vertical-align:middle;
  37. }
  38. .srchBtn
  39. {
  40. border:0;
  41. border-radius:7px;
  42. padding:017px;
  43. background:#e74c3c;
  44. width:99px;
  45. border-bottom:5pxsolid#c0392b;
  46. color:#fff;
  47. height:65px;
  48. font-size:1.5rem;
  49. cursor:pointer;
  50. }
  51. .srchBtn:active
  52. {
  53. border-bottom:0pxsolid#c0392b;
  54. }
  55. .srchFld
  56. {
  57. border:0;
  58. border-radius:7px;
  59. padding:017px;
  60. max-width:404px;
  61. width:40%;
  62. border-bottom:5pxsolid#bdc3c7;
  63. height:60px;
  64. color:#7f8c8d;
  65. font-size:19px;
  66. }
  67. .srchFld:focus
  68. {
  69. outline-color:rgba(255,255,255,0);
  70. }
  71. /*404Styling*/
  72. .header
  73. {
  74. font-size:13rem;
  75. font-weight:700;
  76. margin:2%02%0;
  77. text-shadow:0px3px0px#7f8c8d;
  78. }
  79. /*ErrorStyling*/
  80. .error
  81. {
  82. margin:-70px02%0;
  83. font-size:7.4rem;
  84. text-shadow:0px3px0px#7f8c8d;
  85. font-weight:100;
  86. }

  以上就是今天和大家分享的404页面,谢谢阅读,希望能帮到大家,请继续关注,我们会努力分享更多优秀的文章。

您可能有感兴趣的文章
css让页脚保持在底部位置的四种方案

CSS如何使用Flex和Grid布局如何实现3D骰子

Flex布局史上最简单使用语法教程

新的CSS 伪类函数 :is() 和 :where()示例详解

纯CSS打字动画的如何实现示例