1
我可以代替<center> <\center>
用什麼其他標記中心元素作爲angular4抱怨說,中心是一個未定義功能Angular4抱怨在HTML爲未定義功能
我可以代替<center> <\center>
用什麼其他標記中心元素作爲angular4抱怨說,中心是一個未定義功能Angular4抱怨在HTML爲未定義功能
TRY 1編輯
<center>This text will be centered.
<p>So will this paragraph.</p></center>
TRY 2(CSS備選)編輯
<div style="text-align:center">This text will be centered.
<p>So will this paragraph.</p></div>
TRY 3(CSS替代)編輯
<p style="text-align:center">This line will be centered.<br>
And so will this line.</p>
我希望這有助於。