الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> p { background: lightgray; font-size: 20px; line-height: 40px; } .baseline { vertical-align: baseline; } .text-top { vertical-align: text-top; } .text-bottom { vertical-align: text-bottom; } .top { vertical-align: top; } .bottom { vertical-align: bottom; } .middle { vertical-align: middle; } .sub { vertical-align: sub; } .super { vertical-align: super; } .length-positive { vertical-align: 10px; } .length-negative { vertical-align: -10px; } .percentage-positive { vertical-align: 15%; } .percentage-negative { vertical-align: -15%; } </style> </head> <body> <h1>CSS vertical-align</h1> <p><img class="baseline" src="/tutorials/css/text/square.png"/> baseline</p> <p><img class="text-top" src="/tutorials/css/text/square.png"/> text-top</p> <p><img class="text-bottom" src="/tutorials/css/text/square.png"/> text-bottom</p> <p><img class="top" src="/tutorials/css/text/square.png"/> top</p> <p><img class="bottom" src="/tutorials/css/text/square.png"/> bottom</p> <p><img class="middle" src="/tutorials/css/text/square.png"/> middle</p> <p><img class="super" src="/tutorials/css/text/square.png"/> super</p> <p><img class="sub" src="/tutorials/css/text/square.png"/> sub</p> <p><img class="length-positive" src="/tutorials/css/text/square.png"/> length-positive</p> <p><img class="length-negative" src="/tutorials/css/text/square.png"/> length-negative</p> <p><img class="percentage-positive" src="/tutorials/css/text/square.png"/> percentage-positive</p> <p><img class="percentage-negative" src="/tutorials/css/text/square.png"/> percentage-negative</p> </body> </html>