구현 방법:
(추천 튜토리얼: html tutorial)
1. 텍스트 센터링:
text-align: center; line-height: 100px; (=height)
2. 라벨 센터링
margin: 0 auto; 其中0指的是margin-top:0
특정 코드:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>搜索论坛</title> <link rel="stylesheet" href="https://www.baidu.com/img/baidu_jgylogo3.gif"> <style> .item1{ height: 100px; width: 100px; background-color: red; text-align: center; line-height: 100px; margin: 0 auto; } .item2{ height: 100px; width: 100px; background-color: wheat; text-align: center; line-height: 100px; margin: 100px auto; } </style> </head> <body> <div> <div>1111</div> <div>2222</div> </div> </body> </html>
위 내용은 HTML에서 텍스트와 레이블을 중앙에 배치하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!