Blogger Information
Blog 6
fans 0
comment 0
visits 4961
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML 基础之链接元素
萨龙龙
Original
715 people have browsed it

链接元素

1、<a> 元素的定义和用法

  • <a> 标签定义超链接,用于从一个页面链接(跳转)到另一个页面。
  • <a> 元素最重要的属性是 href 属性,它指示链接的目标,或者说是要跳转到的页面/链接。如果 href 属性中没有值,很多属性是不可用的,比如:download, rel, target 等。

2、<a> 元素跳转的目标

作用
_blank 在新窗口中打开被链接文档
_self 默认。在当前窗口中打开被链接文档
_parent 在父框架集中打开被链接文档
_top 在整个窗口中打开被链接文档
framename 在指定的框架中打开被链接文档

3、<a> 元素实例

  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <meta
  7. name="description"
  8. content="PHP 系统学习之路之 HTML 基础,a 标签链接元素的使用实例"
  9. />
  10. <meta name="keywords" content="PHP 学习, HTML 基础, a 标签, 链接元素" />
  11. <link rel="canonical" href="http://127.0.0.1:5500/0403/a.html" />
  12. <link rel="shortcut icon" href="/images/favicon.jpg" />
  13. <title>链接元素|PHP 系统学习之路之 HTML 基础</title>
  14. <style>
  15. /******************************************
  16. * 主体内容
  17. ******************************************/
  18. main {
  19. display: flex;
  20. align-items: center;
  21. justify-content: center;
  22. align-self: center;
  23. min-height: 600px;
  24. }
  25. /******************************************
  26. * 链接元素
  27. ******************************************/
  28. /* 链接元素样式 */
  29. a.link {
  30. display: inherit;
  31. color: #666;
  32. padding: 8px 20px;
  33. border: 1px solid #eee;
  34. text-decoration: none;
  35. -moz-transition: ease-in-out 0.5s;
  36. -webkit-transition: ease-in-out 0.5s;
  37. -o-transition: ease-in-out 0.5s;
  38. -ms-transition: ease-in-out 0.5s;
  39. transition: ease-in-out 0.5s;
  40. }
  41. /* 链接元素鼠标经过样式 */
  42. a.link:hover {
  43. background-color: #ff0000;
  44. border-color: #ff0000;
  45. color: #ffffff;
  46. }
  47. </style>
  48. </head>
  49. <body>
  50. <!-- 主体内容 -->
  51. <main>
  52. <!-- 链接元素 -->
  53. <a
  54. href="https://salongweb.com"
  55. title="链接到萨龙网络"
  56. class="link"
  57. target="_blank"
  58. >链接元素</a
  59. >
  60. <!-- 链接元素 end -->
  61. </main>
  62. <!-- 主体内容 end -->
  63. </body>
  64. </html>
Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:写得不错
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post