이 글에서는 주로 일반적인 CSS 연산의 분류 방법을 자세히 설명합니다. 관심 있는 친구들은
1. 크기 연산
높이 요소 높이 설정
.p1{ width: 400px; line-height: normal; } .p2{ width: 400px; line-height: 200%; } .p3{ width: 400px; line-height: 50%; }
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>对齐</title> <link href="style.css" type="text/css" rel="stylesheet"> </head> <body> <p class="p1">This is my web page This is my web page This is my web page This is my web page This is my web page This is my web page </p> <p class="p2">This is my web page This is my web page This is my web page This is my web page This is my web page This is my web page </p> <p class="p3">This is my web page This is my web page This is my web page This is my web page This is my web page This is my web page </p> </body> </html>
.p1{ line-height: normal; max-width: 250px; }
p{ cursor: auto; }
p{ cursor: alias; }
p{ cursor: cell; }
li{ display: inline; } <ul> <li>Hello</li> <li>Hello</li> <li>Hello</li> <li>Hello</li> </ul>
li{ display: inline; visibility: hidden; }
위 내용은 일반적인 CSS 작업 분류 방법에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!