搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
CSS 教程
CSS 基础教程
源代码
清空
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Example of CSS text alignment</title> <style> h1 { text-align: center; } p { width: 400px; text-align: justify; } </style> </head> <body> <h1>Text-align Effect</h1> <p>CSS is a Style Sheet Language for formatting the document content (written in HTML or other markup language). You might be interested by the CSS Working Group wiki too.</p> </body> </html>
运行结果