0
Can you align a paragraph in html
3 ответов
+ 5
You can use CSS for alignment. Do you want to align the text or the paragraph itself? And yo where do you want to align it?
+ 1
I would like to align the text itself. Also are there only 3 options for align(left right and center) or are there more?
+ 1
<html>
<head>
<style>
p
{
text-align:center;
}
</style>
</head>
<body>
<p>This is a paragraph</p>
</body>
</html>