@redreamSo
2016-12-04T00:32:56.000000Z
字数 2713
阅读 1320
HTML
|
渲染引擎 | js引擎 |
---|---|---|
IE | Trident ([‘traɪd(ə)nt]) | Chakra |
IE Edge | EdgeHTML | Chakra |
chrome | Bink | V8 |
opera | Bink | V8 |
Firefox | Gecko ([‘gekəʊ]) | Spidermonkey |
Safari | Webkit | JavaScriptCore |
<img src="x/x.jpg" alt="替代文字" width="300" heigth="300">
读屏软件能读,还有省流量模式下显示文字,还有seo友好。
<table>
<!--必须是table第一个子元素-->
<caption>浏览器引擎</caption>
<colgroup>
<col calss="first">
<col calss="second-third" span="2">
<!--批量为每列添加样式,span是跨越几列-->
<colgroup>
<thead>
<tr>
<th>浏览器</th>
</tr>
</thead>
<tbody>
<tr>
<th>chrome</th>
</tr>
<tbody>
</table>
<lable for="name"></lable><input id="name">
或<lable><input/></lable>
,两种方式关联,对读屏软件友好----webkitboundarydsadsadsd
Content-Disposition: form-data; name="name"
John
----webkitboundarydsadsadsd
<p hidden>你看不见我</p>
JSON-LD:
{
"@context": "http://schema.org",
"@type": "Person",
"name": "John Doe",
"jobTitle": "Graduate research assistant",
"affiliation": "University of Dreams",
"additionalName": "Johnny",
"url": "http://www.example.com",
"address": {
"@type": "PostalAddress",
"streetAddress": "1234 Peach Drive",
"addressLocality": "Wonderland",
"addressRegion": "Georgia"
}
}