为什么pa的text-align无法居中或者左右
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>奥</title>
<style type ="text/css">
h1{
font-size:26px;
color:blue;
text-align:center;
}
p{
font-size:99px;
color:blueviolet;
text-align: left;
}
pa{
font-size:10px;
color: burlywood;
text-align: center;
}
</style>
</head>
<body>
<h1>嘻 嘻 嘻 嘻</h1>
<p>
阿<br />哦<br />呃
</p>
<pa>
就 这 就 这
</pa>
</body>
</html>