<kbd>
HTML <kbd> tag
Instance
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> </head> <body> <em>强调文本</em><br> <strong>加粗文本</strong><br> <dfn>定义项目</dfn><br> <code>一段电脑代码</code><br> <samp>计算机样本</samp><br> <kbd>键盘输入</kbd><br> <var>变量</var> </body> </html>
Run Example»
Click the "Run Instance" button to view the online instance
Browser support
Currently most browsers support < kbd> tag.
Tag definition and usage instructions
<kbd> Tag defines keyboard text.
Tips: <kbd> tag is obsolete and is not recommended for use, but Rich effects can be achieved through CSS.
All tag phrases:
Description | |
---|---|
is rendered as highlighted text. | |
Define important text. | |
Define a definition item. | |
Define computer code text. | |
Define sample text. | |
Define keyboard text. It indicates that the text was typed from the keyboard. It is often used in computer-related documentation or manuals. | |
Define variables. You can use this tag with the <pre> and <code> tags. |
Differences between HTML 4.01 and HTML5None.
Global attributes<kbd> tag supports global attributes, see the complete attribute table HTML global attributes.
Event attributes<kbd> tag supports all HTML event attributes.
Related ArticlesHTML Tutorial: HTML Text Formatting