热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

总结一些不为人熟知的HTML特性。

总结一些不为人熟知的HTML特性。|HTMLTipsbyMarko|April12,2020Inthisarticle,I

HTML Tips

HTML

' loading='lazy' alt='Alternative Text'>

2. Email, call, and SMS links:


<a href="mailto:{email}?subject={subject}&body={content}">
  Send us an email
a>

<a href="tel:{phone}">
  Call us
a>

<a href="sms:{phone}?body={content}">
  Send us a message
a>           

3. Ordered lists `start` attribute.

Use the start attribute to change the starting point for your ordered lists.

Codepen Preview

4. The `meter` element

You can use the  element to display quantities. No Javascript/CSS needed.

14. `download` attribute

You can use the download attribute in your links to download the file instead of navigating to it.


<a href='path/to/file' download>
  Download
a>           

15. Performance tip

Use the .webp image format to make images smaller and boost the performance of your website.


<picture>
  
  <source srcset="logo.webp" type="image/webp">
  
  
  <img src="logo.png" alt="logo">
picture>           

16. Video thumbnail

Use the poster attribute to specify an image to be shown while the video is downloading, or until the user hits the play button.


<video poster="path/to/image">           

17. input type="search"

Use the type="search" for your search inputs and you get the “clear” button for free.

Input Type Search

To be continued…

via https://markodenic.com/html-tips/


推荐阅读
author-avatar
小小贤
这个家伙很懒,什么也没留下!
Tags | 热门标签
RankList | 热门文章
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有