2017-08-06 62 views

回答

2

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> 

我希望這有助於。