文本对齐仅适用于一个标签,而不适用于另一个标签?

时间:2018-12-05 22:46:49

标签: html css

我制作了一个简单的网页。 我使用样式格式 我创建一个,它使文本对齐,但另一个不对齐。我肯定这很简单,但是我在做什么错了?

<!DOCTYPE html>
<html>

<style>
p {
 color: Black;
 text-align: center;
 font-size: 20px;
 } 

 body {
 background-color: lightgray;
}

f { color: green; 
text-align: center;
}

</style>

<body>

<p>hello world!</p>
<f>hello again world</f>

</body>
</html>

1 个答案:

答案 0 :(得分:2)

f标签不是标准标签,如果您发明了自己的标签,它将没有显示规则,因此将其阻止。

尝试

<A CLASS="someClass" uniqueID="someValue" anotherID="someOtherValue">
Here is the data I can scrape right now.
</A>