From 08a04d85393a0bb5721a17328df62c4915c487c5 Mon Sep 17 00:00:00 2001 From: Florian Merz Date: Fri, 5 Feb 2021 18:52:37 +0100 Subject: fix some macros for zh-cn --- .../accept/index.html" | 18 +++++++++--------- files/zh-cn/glossary/string/index.html | 6 +++--- files/zh-cn/web/api/element/setattribute/index.html | 2 +- files/zh-cn/web/api/file_handle_api/index.html | 2 +- .../globaleventhandlers/ontransitioncancel/index.html | 2 +- .../web/api/htmltablerowelement/rowindex/index.html | 10 +++++----- files/zh-cn/web/api/location/tostring/index.html | 6 +++--- files/zh-cn/web/api/request/context/index.html | 8 ++++---- .../web/api/speechsynthesisutterance/voice/index.html | 2 +- files/zh-cn/web/api/svggraphicselement/index.html | 16 ++++++++-------- files/zh-cn/web/html/attributes/index.html | 4 ++-- .../index.html" | 6 +++--- .../headers/access-control-allow-headers/index.html | 2 +- .../javascript/building_blocks/looping_code/index.html | 2 +- .../learn/server-side/django/introduction/index.html | 2 +- files/zh-tw/web/css/grid-template/index.html | 10 +++++----- 16 files changed, 49 insertions(+), 49 deletions(-) (limited to 'files') diff --git "a/files/uk/web/http/\320\267\320\260\320\263\320\276\320\273\320\276\320\262\320\272\320\270/accept/index.html" "b/files/uk/web/http/\320\267\320\260\320\263\320\276\320\273\320\276\320\262\320\272\320\270/accept/index.html" index 0927cca0d3..a4f3ea4fe1 100644 --- "a/files/uk/web/http/\320\267\320\260\320\263\320\276\320\273\320\276\320\262\320\272\320\270/accept/index.html" +++ "b/files/uk/web/http/\320\267\320\260\320\263\320\276\320\273\320\276\320\262\320\272\320\270/accept/index.html" @@ -5,20 +5,20 @@ translation_of: Web/HTTP/Headers/Accept ---
{{HTTPSidebar}}
-

Accept请求的HTTP标头通告哪些内容类型,表示为MIME类型,客户端是能够理解的。使用内容协商,服务器然后选择其中一个提议,使用它并通过{{HTTPHeader(“Content-Type”)}}响应标头通知客户端它的选择。浏览器根据请求完成的上下文为此标头设置了足够的值:在获取CSS样式表时,为请求设置的值与获取图像,视频或脚本时的值不同。

+

Accept请求的HTTP标头通告哪些内容类型,表示为MIME类型,客户端是能够理解的。使用内容协商,服务器然后选择其中一个提议,使用它并通过{{HTTPHeader("Content-Type")}}响应标头通知客户端它的选择。浏览器根据请求完成的上下文为此标头设置了足够的值:在获取CSS样式表时,为请求设置的值与获取图像,视频或脚本时的值不同。

- + - + - + @@ -30,7 +30,7 @@ translation_of: Web/HTTP/Headers/Accept 接受:<MIME_type> / * 接受:* / * -//多种类型,使用{{词汇表(“质量值”,“质量值”)}}语法加权: +//多种类型,使用{{词汇表("质量值”,“质量值")}}语法加权: 接受:text / html,application / xhtml + xml,application / xml; q = 0.9,* / *; q = 0.8

指令

@@ -64,7 +64,7 @@ translation_of: Web/HTTP/Headers/Accept - + @@ -74,12 +74,12 @@ translation_of: Web/HTTP/Headers/Accept -

{{COMPAT( “http.headers.Accept”)}}

+

{{COMPAT("http.headers.Accept")}}

也可以看看

diff --git a/files/zh-cn/glossary/string/index.html b/files/zh-cn/glossary/string/index.html index 924376fd35..607cc107c7 100644 --- a/files/zh-cn/glossary/string/index.html +++ b/files/zh-cn/glossary/string/index.html @@ -3,15 +3,15 @@ title: String slug: Glossary/String translation_of: Glossary/String --- -

在任何计算机编程语言中,字符串都是用于表示文本的\{\{Glossary(“ character”,“ characters”)}}序列。

+

在任何计算机编程语言中,字符串都是用于表示文本的{{Glossary("character”,“ characters")}}序列。

-

在\{\{Glossary(“ JavaScript”)}}中,字符串是\{\{Glossary(“ Primitive”,“ primitive values”)}}的其中一个,而\{\{jsxref(“ String”)}}是\{\{Glossary( “ wrapper”)}}围绕字符串的基本形式。

+

在{{Glossary("JavaScript")}}中,字符串是{{Glossary("Primitive”,“ primitive values")}}的其中一个,而{{jsxref("String")}}是{{Glossary("wrapper")}}围绕字符串的基本形式。

学到更多

基本知识

diff --git a/files/zh-cn/web/api/element/setattribute/index.html b/files/zh-cn/web/api/element/setattribute/index.html index 0855bc31f6..4763c9fe9e 100644 --- a/files/zh-cn/web/api/element/setattribute/index.html +++ b/files/zh-cn/web/api/element/setattribute/index.html @@ -39,7 +39,7 @@ translation_of: Web/API/Element/setAttribute

布尔属性(原文是Boolean attributes)只要出现在元素上就会被认为是 true ,无论它的值是什么; 一般来说, 你应该将 value 设置为空字符串 ("") 。(一些人使用这个属性的名称作为值; 这不会出现什么问题,但这是不规范的). See the {{anch("Example", "example")}} below for a practical demonstration.

-

由于将指定的值转换为字符串,因此指定null不一定能达到您的期望。 而不是删除属性或将其值设置为{{jsxref(“ null”)}},而是将属性的值设置为字符串“ null”。 如果要删除属性,请调用{{domxref(“ Element.removeAttribute”,“ removeAttribute()”)}}}。

+

由于将指定的值转换为字符串,因此指定null不一定能达到您的期望。 而不是删除属性或将其值设置为{{jsxref("null")}},而是将属性的值设置为字符串“ null”。 如果要删除属性,请调用{{domxref("Element.removeAttribute”,“ removeAttribute()")}}}。

返回值

diff --git a/files/zh-cn/web/api/file_handle_api/index.html b/files/zh-cn/web/api/file_handle_api/index.html index 84a22d51e6..d1ab4f5f24 100644 --- a/files/zh-cn/web/api/file_handle_api/index.html +++ b/files/zh-cn/web/api/file_handle_api/index.html @@ -24,7 +24,7 @@ translation_of: Web/API/File_Handle_API

创建文件句柄

-

因为目的是允许通过IndexedDB存储文件,所以创建{{domxref(“ FileHandle”)}}实例需要IndexedDB Database

+

因为目的是允许通过IndexedDB存储文件,所以创建{{domxref("FileHandle")}}实例需要IndexedDB Database

var IDBReq = indexedDB.open("myFileStorageDataBase");
diff --git a/files/zh-cn/web/api/globaleventhandlers/ontransitioncancel/index.html b/files/zh-cn/web/api/globaleventhandlers/ontransitioncancel/index.html
index b6f15f3181..e476a7a4a1 100644
--- a/files/zh-cn/web/api/globaleventhandlers/ontransitioncancel/index.html
+++ b/files/zh-cn/web/api/globaleventhandlers/ontransitioncancel/index.html
@@ -16,7 +16,7 @@ translation_of: Web/API/GlobalEventHandlers/ontransitioncancel
 

当CSS转换被取消时,transitioncancel事件被触发。当以下情况时,过渡被取消::

    -
  • 应用于目标的{{cssxref(“transition-property”)}}属性的值被更改
  • +
  • 应用于目标的{{cssxref("transition-property")}}属性的值被更改
  • {{cssxref("display")}}属性被设置为"none"。
  • 转换在运行到完成之前就停止了,例如通过将鼠标移出悬浮过渡元素。
diff --git a/files/zh-cn/web/api/htmltablerowelement/rowindex/index.html b/files/zh-cn/web/api/htmltablerowelement/rowindex/index.html index 03e5ed41b7..0e10295803 100644 --- a/files/zh-cn/web/api/htmltablerowelement/rowindex/index.html +++ b/files/zh-cn/web/api/htmltablerowelement/rowindex/index.html @@ -3,11 +3,11 @@ title: HTMLTableRowElement.rowIndex slug: Web/API/HTMLTableRowElement/rowIndex translation_of: Web/API/HTMLTableRowElement/rowIndex --- -
{{APIRef(“ HTML DOM”)}}
+
{{APIRef("HTML DOM")}}
-

HTMLTableRowElement.rowIndex只读属性表示一个行相对于整个位置{{的HtmlElement(“表”)}}。

+

HTMLTableRowElement.rowIndex只读属性表示一个行相对于整个位置{{的HtmlElement("表")}}。

-

即使{{HtmlElement(“ thead”)}},{{HtmlElement(“ tbody”)}}和{{HtmlElement(“ tfoot”)}}}的元素在HTML中乱序显示,浏览器也会以正确的顺序。因此,行数从<thead><tbody>,从<tbody><tfoot>

+

即使{{HtmlElement("thead")}},{{HtmlElement("tbody")}}和{{HtmlElement("tfoot")}}}的元素在HTML中乱序显示,浏览器也会以正确的顺序。因此,行数从<thead><tbody>,从<tbody><tfoot>

句法

@@ -49,10 +49,10 @@ rows.forEach((row)=> {

结果

-

{{EmbedLiveSample(“ Example”)}}

+

{{EmbedLiveSample("Example")}}

浏览器兼容性

-

{{Compat(“ api.HTMLTableRowElement.rowIndex”)}}

+

{{Compat("api.HTMLTableRowElement.rowIndex")}}

diff --git a/files/zh-cn/web/api/location/tostring/index.html b/files/zh-cn/web/api/location/tostring/index.html index 84a5fdddff..6af60a303c 100644 --- a/files/zh-cn/web/api/location/tostring/index.html +++ b/files/zh-cn/web/api/location/tostring/index.html @@ -3,9 +3,9 @@ title: 'Location: toString()' slug: Web/API/Location/toString translation_of: Web/API/Location/toString --- -

{{ApiRef(“ Location”)}}

+

{{ApiRef("Location")}}

-

toString(){{domxref(“ Location”)}}接口stringifier方法返回包含整个URL的{{domxref(“ USVString”)}}}。它是{{domxref(“ Location.href”)}}的只读版本。

+

toString(){{domxref("Location")}}接口stringifier方法返回包含整个URL的{{domxref("USVString")}}}。它是{{domxref("Location.href")}}的只读版本。

句法

@@ -39,4 +39,4 @@ var result = anchor.toString(); // Returns: 'https://developer.mozilla.org/en-US -

{{Compat(“ api.Location.toString”)}}

+

{{Compat("api.Location.toString")}}

diff --git a/files/zh-cn/web/api/request/context/index.html b/files/zh-cn/web/api/request/context/index.html index c1ecbc28a0..98730ceb60 100644 --- a/files/zh-cn/web/api/request/context/index.html +++ b/files/zh-cn/web/api/request/context/index.html @@ -5,9 +5,9 @@ translation_of: Web/API/Request/context ---
{{APIRef("Fetch")}}{{deprecated_header()}}
-

The deprecated 弃用context所述的只读属性{{domxref(“请求”)}}接口包含请求的上下文(例如,audioimageiframe)。这定义了要获取的资源类型。它已由{{domxref(“ Request.destination”,“ destination”)}}属性取代。 This defines what sort of resource is being fetched. This has been replaced by the {{domxref("Request.destination", "destination")}} property.

+

The deprecated 弃用context所述的只读属性{{domxref("请求")}}接口包含请求的上下文(例如,audioimageiframe)。这定义了要获取的资源类型。它已由{{domxref("Request.destination”,“ destination")}}属性取代。 This defines what sort of resource is being fetched. This has been replaced by the {{domxref("Request.destination", "destination")}} property.

-

The context of a request is only relevant in the 请求的上下文仅与ServiceWorker API相关服务人员可以根据URL是用于图像还是可嵌入对象(例如{{htmlelement(“视频”)}},{{domxref(“ iframe”)}}等)进行决策。; a service worker can make decisions based on whether the URL is for an image, or an embeddable object such as a {{htmlelement("video")}}, {{domxref("iframe")}}, etc.

+

The context of a request is only relevant in the 请求的上下文仅与ServiceWorker API相关服务人员可以根据URL是用于图像还是可嵌入对象(例如{{htmlelement("视频")}},{{domxref("iframe")}}等)进行决策。; a service worker can make decisions based on whether the URL is for an image, or an embeddable object such as a {{htmlelement("video")}}, {{domxref("iframe")}}, etc.

Note注意:您可以在“ 获取规范请求上下文”部分中找到不同可用上下文的完整列表,包括关联的上下文框架类型,CSP指令和平台功能示例 section.

@@ -19,11 +19,11 @@ translation_of: Web/API/Request/context

Value

-

A {{domxref("RequestContext")}} value.一个{{domxref(“ RequestContext”)}}值。

+

A {{domxref("RequestContext")}} value.一个{{domxref("RequestContext")}}值。

Example例子

-

In the following snippet, we create a new request using the {{domxref("Request.Request()")}} constructor (for an image file in the same directory as the script), then save the request context in a variable:在以下代码段中,我们使用{{domxref(“ Request.Request()”)}}}构造函数创建一个新请求(用于与脚本位于同一目录中的图像文件),然后将请求上下文保存在变量中:

+

In the following snippet, we create a new request using the {{domxref("Request.Request()")}} constructor (for an image file in the same directory as the script), then save the request context in a variable:在以下代码段中,我们使用{{domxref("Request.Request()")}}}构造函数创建一个新请求(用于与脚本位于同一目录中的图像文件),然后将请求上下文保存在变量中:

var myRequest = new Request('flowers.jpg');
 var myContext = myRequest.context; // returns the empty string by default
diff --git a/files/zh-cn/web/api/speechsynthesisutterance/voice/index.html b/files/zh-cn/web/api/speechsynthesisutterance/voice/index.html index 3295efbbbf..2eec93df10 100644 --- a/files/zh-cn/web/api/speechsynthesisutterance/voice/index.html +++ b/files/zh-cn/web/api/speechsynthesisutterance/voice/index.html @@ -3,7 +3,7 @@ title: SpeechSynthesisUtterance.voice slug: Web/API/SpeechSynthesisUtterance/voice translation_of: Web/API/SpeechSynthesisUtterance/voice --- -
<trans newtip="{{APIRef(“Web语音API”)}}{SeeCompattable}" oldtip="{{APIRef("Web Speech API")}}{{SeeCompatTable}}">{{APIRef(“Web语音API”)}}{SeeCompattable}</trans>
+
<trans newtip="{{APIRef("Web语音API")}}{SeeCompattable}" oldtip="{{APIRef("Web Speech API")}}{{SeeCompatTable}}">{{APIRef("Web语音API")}}{SeeCompattable}</trans>

The voice property of the {{domxref("SpeechSynthesisUtterance")}} interface gets and sets the voice that will be used to speak the utterance.

diff --git a/files/zh-cn/web/api/svggraphicselement/index.html b/files/zh-cn/web/api/svggraphicselement/index.html index 6214ff482c..2b0ae33a27 100644 --- a/files/zh-cn/web/api/svggraphicselement/index.html +++ b/files/zh-cn/web/api/svggraphicselement/index.html @@ -18,29 +18,29 @@ translation_of: Web/API/SVGGraphicsElement

{{InheritanceDiagram(600, 120)} }

-

提示: 该接口是SVG 2中引入的,它取代了SVG 1.1中的{{domxref(“ SVGLocatable”)}}和{{domxref(“ SVGTransformable”)}}接口。

+

提示: 该接口是SVG 2中引入的,它取代了SVG 1.1中的{{domxref("SVGLocatable")}}和{{domxref("SVGTransformable")}}接口。

属性

-

此接口还从其父接口{{domxref(“ SVGElement”)}}继承属性

+

此接口还从其父接口{{domxref("SVGElement")}}继承属性

-
{{domxref(“ SVGGraphicsElement.transform”)}} {{ReadOnlyInline}}
- 一个{{domxref(“ SVGAnimatedTransformList”)}}反映给定元素的{{cssxref(“ transform”)}}属性的计算值及其对应的{{SVGAttr(“ transform”)}}}属性。
+
{{domxref("SVGGraphicsElement.transform")}} {{ReadOnlyInline}}
+ 一个{{domxref("SVGAnimatedTransformList")}}反映给定元素的{{cssxref("transform")}}属性的计算值及其对应的{{SVGAttr("transform")}}}属性。

方法

-

此接口还从其父方法{{domxref(“ SVGElement”)}}继承方法。

+

此接口还从其父方法{{domxref("SVGElement")}}继承方法。

{{domxref("SVGGraphicsElement.getBBox()")}}
-
返回一个{{domxref(“ DOMRect”)}},它表示当前元素的计算出的边界框。
+
返回一个{{domxref("DOMRect")}},它表示当前元素的计算出的边界框。
{{domxref("SVGGraphicsElement.getCTM()")}}
-
返回一个{{domxref(“ DOMMatrix”)}},代表将当前元素的坐标系转换为其SVG视口的坐标系的矩阵。
+
返回一个{{domxref("DOMMatrix")}},代表将当前元素的坐标系转换为其SVG视口的坐标系的矩阵。
{{domxref("SVGGraphicsElement.getScreenCTM()")}}
-
返回一个{{domxref(“ DOMMatrix”)}}代表表示将当前元素的坐标系转换为SVG文档片段的SVG视口的坐标系的矩阵。
+
返回一个{{domxref("DOMMatrix")}}代表表示将当前元素的坐标系转换为SVG文档片段的SVG视口的坐标系的矩阵。

规范

diff --git a/files/zh-cn/web/html/attributes/index.html b/files/zh-cn/web/html/attributes/index.html index 237ef0c2c9..846e47bddd 100644 --- a/files/zh-cn/web/html/attributes/index.html +++ b/files/zh-cn/web/html/attributes/index.html @@ -91,7 +91,7 @@ translation_of: Web/HTML/Attributes
@@ -195,7 +195,7 @@ translation_of: Web/HTML/Attributes - + diff --git "a/files/zh-cn/web/http/cors/errors/cors\351\224\231\350\257\257\345\205\201\350\256\270\345\207\255\350\257\201/index.html" "b/files/zh-cn/web/http/cors/errors/cors\351\224\231\350\257\257\345\205\201\350\256\270\345\207\255\350\257\201/index.html" index 9ba1f6b468..8a8f8d0074 100644 --- "a/files/zh-cn/web/http/cors/errors/cors\351\224\231\350\257\257\345\205\201\350\256\270\345\207\255\350\257\201/index.html" +++ "b/files/zh-cn/web/http/cors/errors/cors\351\224\231\350\257\257\345\205\201\350\256\270\345\207\255\350\257\201/index.html" @@ -16,9 +16,9 @@ translation_of: Web/HTTP/CORS/Errors/CORSMIssingAllowCredentials

想要在客户端解决此问题,请修改代码以不请求使用凭据:

想要通过更改服务器的配置来消除此错误,请调整服务器的配置以将Access-Control-Allow-Credentials标头的值设置为true。

diff --git a/files/zh-cn/web/http/headers/access-control-allow-headers/index.html b/files/zh-cn/web/http/headers/access-control-allow-headers/index.html index d6a3737780..b8b9214a39 100644 --- a/files/zh-cn/web/http/headers/access-control-allow-headers/index.html +++ b/files/zh-cn/web/http/headers/access-control-allow-headers/index.html @@ -46,7 +46,7 @@ Access-Control-Allow-Headers: *

* (wildcard)

-

对于没有凭据的请求(没有HTTP cookie或HTTP认证信息的请求),值“ *”仅作为特殊的通配符值。 在具有凭据的请求中,它被视为没有特殊语义的文字标头名称“ *”。 请注意,{{HTTPHeader(“ Authorization”)}}标头不能使用通配符,并且始终需要明确列出。

+

对于没有凭据的请求(没有HTTP cookie或HTTP认证信息的请求),值“ *”仅作为特殊的通配符值。 在具有凭据的请求中,它被视为没有特殊语义的文字标头名称“ *”。 请注意,{{HTTPHeader("Authorization")}}标头不能使用通配符,并且始终需要明确列出。

示例

diff --git a/files/zh-tw/learn/javascript/building_blocks/looping_code/index.html b/files/zh-tw/learn/javascript/building_blocks/looping_code/index.html index 0e1e400b4d..8a63ee6f04 100644 --- a/files/zh-tw/learn/javascript/building_blocks/looping_code/index.html +++ b/files/zh-tw/learn/javascript/building_blocks/looping_code/index.html @@ -287,7 +287,7 @@ para.textContent = info;

循環也是如此,-break語句將立即退出循環,並使瀏覽器繼續執行緊隨其後的任何代碼。

-

假設我們要搜索一系列聯繫人和電話號碼,然後僅返回我們要查找的號碼? 首先,提供一些簡單的HTML-文本 {{htmlelement(“ input”)}} 允許我們輸入要搜索的名稱,{{htmlelement(“ button”)}} 元素以提交搜索,以及 {{htmlelement (“ p”)}} 元素以在以下位置顯示結果:

+

假設我們要搜索一系列聯繫人和電話號碼,然後僅返回我們要查找的號碼? 首先,提供一些簡單的HTML-文本 {{htmlelement("input")}} 允許我們輸入要搜索的名稱,{{htmlelement("button")}} 元素以提交搜索,以及 {{htmlelement ("p")}} 元素以在以下位置顯示結果:

<label for="search">Search by contact name: </label>
 <input id="search" type="text">
diff --git a/files/zh-tw/learn/server-side/django/introduction/index.html b/files/zh-tw/learn/server-side/django/introduction/index.html
index f0a9e2caa5..7a9d2f7281 100644
--- a/files/zh-tw/learn/server-side/django/introduction/index.html
+++ b/files/zh-tw/learn/server-side/django/introduction/index.html
@@ -236,7 +236,7 @@ def index(request):
 
 

模板系統允許您使用佔位符指定輸出文檔的結構,以便在生成頁面時填充數據。模板通常用於創建HTML,但也可以創建其他類型的文檔。 Django支持其本機模板系統,和另一個流行的Python庫,名為 Jinja2(如果需要,它也可以支持其他系統)。

-

代碼片段,顯示了上一節中render()函數調用的HTML模板的外觀。這個模板的編寫假設它在渲染時可以訪問名為youngest_teams的列表變量(包含在上面render()函數中的上下文變量context中)。在HTML框架內部,我們有一個表達式,首先檢查youngest_teams變量是否存在,然後在for循環中迭代它。在每次迭代中,模板在{{htmlelement(“li”)}}元素中顯示每個團隊的team_name值。

+

代碼片段,顯示了上一節中render()函數調用的HTML模板的外觀。這個模板的編寫假設它在渲染時可以訪問名為youngest_teams的列表變量(包含在上面render()函數中的上下文變量context中)。在HTML框架內部,我們有一個表達式,首先檢查youngest_teams變量是否存在,然後在for循環中迭代它。在每次迭代中,模板在{{htmlelement("li")}}元素中顯示每個團隊的team_name值。

## filename: best/templates/best/index.html
 
diff --git a/files/zh-tw/web/css/grid-template/index.html b/files/zh-tw/web/css/grid-template/index.html
index 9363bb9e1e..d2dd832013 100644
--- a/files/zh-tw/web/css/grid-template/index.html
+++ b/files/zh-tw/web/css/grid-template/index.html
@@ -3,13 +3,13 @@ title: grid-template
 slug: Web/CSS/grid-template
 translation_of: Web/CSS/grid-template
 ---
-

grid-templateCSS屬性是一個速記屬性,用於定義{{詞彙表(“網格列”,“網格列”)}},{{詞彙表(“網格行”,“行”)}},和{{詞彙表(“格狀區“,” area“)}}。

+

grid-templateCSS屬性是一個速記屬性,用於定義{{詞彙表("網格列”,“網格列")}},{{詞彙表("網格行”,“行")}},和{{詞彙表(“格狀區“,” area“)}}。

-
{{EmbedInteractiveExample(“ pages / css / grid-template.html”)}}
+
{{EmbedInteractiveExample("pages / css / grid-template.html")}}
-

作者可以為長期屬性設置值:{{cssxref(“ grid-template-rows”)}},{{cssxref(“ grid-template-columns”)}}和{{cssxref(“ grid-template-areas “)}}。

+

作者可以為長期屬性設置值:{{cssxref("grid-template-rows")}},{{cssxref("grid-template-columns")}}和{{cssxref(“ grid-template-areas “)}}。

句法

@@ -41,9 +41,9 @@ grid-template: unset;
none
-
是將所有三個長期屬性設置為的關鍵字none,表示沒有顯式網格。沒有命名的網格區域。行和列將隱式生成;它們的大小將由{{cssxref(“ grid-auto-rows”)}}和{{cssxref(“ grid-auto-columns”)}}屬性確定。
+
是將所有三個長期屬性設置為的關鍵字none,表示沒有顯式網格。沒有命名的網格區域。行和列將隱式生成;它們的大小將由{{cssxref("grid-auto-rows")}}和{{cssxref("grid-auto-columns")}}屬性確定。
<'grid-template-rows'> / <'grid-template-columns'>
-
將{{cssxref(“ grid-template-rows”)}}和{{cssxref(“ grid-template-columns”)}}設置為指定值,並設置{{cssxref(“ grid-template-areas”)} }至none
+
將{{cssxref("grid-template-rows")}}和{{cssxref("grid-template-columns")}}設置為指定值,並設置{{cssxref(“ grid-template-areas”)} }至none
[ <line-names>? <string> <track-size>? <line-names>? ]+ [ / <explicit-track-list> ]?
Sets {{cssxref("grid-template-areas")}} to the strings listed, {{cssxref("grid-template-rows")}} to the track sizes following each string (filling in auto for any missing sizes), and splicing in the named lines defined before/after each size, and {{cssxref("grid-template-columns")}} to the track listing specified after the slash (or none, if not specified).
-- cgit v1.2.3-54-g00ecf
标题类型{{词汇表(“请求标题”)}}{{词汇表("请求标题")}}
{{词汇表(“禁止标题名称”)}}{{词汇表("禁止标题名称")}} 没有
{{词汇表(“简单标题”,“CORS-safelisted request-header”)}}{{词汇表("简单标题”,“CORS-safelisted request-header")}}
标题
{{RFC(“7231”,“接受”,“5.3.2”)}}{{RFC("7231”,“接受”,“5.3.2")}} 超文本传输​​协议(HTTP / 1.1):语义和上下文
{{ HTMLElement("body") }}, {{ HTMLElement("table") }}, {{ HTMLElement("td") }}, {{ HTMLElement("th") }} 指定图像文件的URL。
-

注意:虽然浏览器和电子邮件客户端可能仍然支持此属性,但它已过时。改用css{{Cssxref(“back-image”)}}。

+

注意:虽然浏览器和电子邮件客户端可能仍然支持此属性,但它已过时。改用css{{Cssxref("back-image")}}。

contextmenu 全局属性定义将用作元素上下文菜单的{{HTMLElement(“Menu”)}}元素的ID。定义将用作元素上下文菜单的{{HTMLElement("Menu")}}元素的ID。
controls