搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
CSS 教程
CSS 基础教程
源代码
清空
点击运行
<!DOCTYPE html> <html> <head> <style> img.top { vertical-align: text-top; } img.bottom { vertical-align: text-bottom; } </style> </head> <body> <p><img src="/run/images/heart.jpg" alt="心型图案"/> 这是具有默认对齐方式的图像。</p> <p><img src="/run/images/heart.jpg" style="vertical-align: text-top;" alt="心型图案"/> 这是文本顶部对齐的图像。</p> <p><img src="/run/images/heart.jpg" style="vertical-align: text-bottom;" alt="心型图案"/> 这是具有文本底部对齐方式的图像。</p> </body> </html>
运行结果