這篇文章主要為大家詳解Css常用操作分類方法,有興趣的夥伴們可以參考一下
一、尺寸操作
height 設定元素高度
line-height 設定行高
.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>
max-height 設定元素最大高度
min-height 設定為最小高度
# width c
## clear 設定一個元素的側面是否允許其他的浮動元素
cursor 規定當指向某元素之上時顯示的指針何時顯示元素
.p1{ line-height: normal; max-width: 250px; }
float 定義元素在哪個方向浮動
position 把元素放置到一個靜態的、相對的、絕對的、固定的位置
p{ cursor: auto; }
p{ cursor: alias; }
以上是詳解Css常用操作分類方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!