博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
以下内容为Stackoverflow上整理以作纪录
阅读量:5096 次
发布时间:2019-06-13

本文共 1507 字,大约阅读时间需要 5 分钟。

PRO 用IMG标签

  1. Use IMG plus alt attribute if the image is  such as a logo or diagram or person (real person, not stock photo people). —如果图片是内容的重要部分例如logo,人员信息的头像等,用img标签,别忘了alt属性
  2. Use IMG if you intend to have people  and you want the image to be included by default. —
    如果你想别人打印你的页面时连图片一起打印,那末用img
  3. Use IMG (with alt text) when the image has an important semantic meaning, such as . This ensures that the meaning of the image can be communicated in all user-agents, including screen readers.  
    如果图片有很重要的语义,例如表示警告的图标,为了保证被别的客户端设备例如屏幕阅读器所识别,那末使用IMG标签,别忘了alt属性
  4. Use IMG if you rely on  to render an image in proportion to text size. 
    当用户改变文本尺寸比例时(通过浏览器如ctr+),使用IMG标签可以使图片正常按比例缩放
  5. Use IMG for . 
    IE6下面多张图片交叠效果需要用IMG标签(具体用处不明)
  6. Use IMG with a z-index in order to  to fill its entire window. 
    使用img标签以及z-index可以撑开整个窗口的背景图。(具体不知道啥意思)
  7. Using img instead of background-image can dramatically . 
    针对图片进行动画交互时使用img标签可显著提升性能

CON 用背景图

    1. Use CSS background images if the image . —
      图片不是内容的主体组成部分时,考虑用背景图
    2. Use CSS background images when doing  eg. paragraphs/headers. —
      需要使用图片替代文字的时候考虑用背景图,比如标题内容、段落内容,有时候需要用更有质感的图片替代部分内容
    3. Use background-image if you intend to have people  and you do not want the image to be included by default. —
      别人打印你的网页,你不想让他打印到图片时考虑用背景图
    4. Use background-image if you need to improve download times, as with .
      合图即css sprite可减少服务器请求次数,用背景图
    5. Use background-image if you need for only a portion of the image to be visible, as with CSS sprites.
      用背景图可以利用css的background-position控制图片的可见范围

转载于:https://www.cnblogs.com/bingya/p/3617717.html

你可能感兴趣的文章
[转]【EL表达式】11个内置对象(用的少) & EL执行表达式
查看>>
ArrayList对象声明& arrayList.size()
查看>>
并发编程 线程
查看>>
Mysql 解压安装
查看>>
Mysql
查看>>
前端html
查看>>
网络编程
查看>>
关于“设计模式”和“设计程序语言”的一些闲话
查看>>
(一二九)获取文件的MineType、利用SSZipArchive进行压缩解压
查看>>
python学习4 常用内置模块
查看>>
Window7上搭建symfony开发环境(PEAR)
查看>>
ResolveUrl的用法
查看>>
Linux内核态、用户态简介与IntelCPU特权级别--Ring0-3
查看>>
第23月第24天 git命令 .git-credentials git rm --cached git stash clear
查看>>
java SE :标准输入/输出
查看>>
一些方便系统诊断的bash函数
查看>>
【转载】基于vw等viewport视区相对单位的响应式排版和布局
查看>>
<转>关于MFC的多线程类 CSemaphore,CMutex,CCriticalSection,CEvent
查看>>
jquery中ajax返回值无法传递到上层函数
查看>>
css3之transform-origin
查看>>