HTML cite 标签
使用 <cite> 标签来定义作品的标题: 实例 Run this code » <p><cite>The Scream</cite> by Edward Munch. Painted in ...
使用 <cite> 标签来定义作品的标题: 实例 Run this code » <p><cite>The Scream</cite> by Edward Munch. Painted in ...
将 HTML 网页中的文本进行水平居中处理: 实例 Run this code » <center>这个文本居中对齐。</center> 浏览器支持 所有主流浏览器都支持 <center> 标签。 标签定...
带有标题的表格: 实例 Run this code » <table border="1"> <caption>Monthly savings</caption> <tr> <th>...
带有与底部对齐的 元素的表格: 实例 Run this code » <table border="1"> <caption align="bottom">My savings</caption> ...
通过 <canvas> 元素来显示一个红色的矩形: 实例 Run this code » <canvas id="myCanvas"></canvas> <script type="text/jav...
高度和宽度为200像素的 : 实例 Run this code » <canvas id="myCanvas" width="200" height="200" style="border:1px solid"> 浏览器支持 所...
高度和宽度为 200 像素的画布(<canvas>): 实例 Run this code » <canvas id="myCanvas" width="200" height="200" style="border:1px...
以下代码标记一个按钮: 实例 Run this code » <button type="button">点我!</button> 浏览器支持 所有主流浏览器都支持 <button> 标签。 标签定义及使...
两个按钮带有相同的名称,在单击它们时提交不同的值: 实例 Run this code » <form action="demo_form.html" method="get"> Choose your favorite su...
两个 button 元素,一个是提交按钮,另一个是重置按钮: 实例 Run this code » <form action="demo_form.html" method="get"> First name: <in...