使用 Dreamweaver 让网页居中的方法有:使用 CSS 添加 body {text-align: center;} 规则;在 body 标签中添加 align="center" 属性;使用表格,将包含网页内容的单元格添加到表格中。
如何使用 Dreamweaver 让网页居中
方法 1:使用 CSS
<code class="css">body { text-align: center; }</code>
方法 2:使用 HTML
<body>
标签中添加 align="center"
属性:<code class="html"><body align="center"> ... </body></code>
方法 3:使用表格
<code class="html"><table> <tr> <td> ... <!-- 网页内容 --> </td> </tr> </table></code>
详细说明:
body
标签的内容,可能导致布局问题。注意:
以上是dreamweaver怎么让网页居中的详细内容。更多信息请关注PHP中文网其他相关文章!