主页
CSS
CSS 位置
试用:将文本放置在图像的左上角
运行 ❯
获取您
自己
的网站
×
更改方向
保存代码
更改主题,暗色/浅色
转到 Spaces
<!DOCTYPE html> <html> <head> <style> .container { position: relative; } .topleft { position: absolute; top: 8px; left: 16px; font-size: 18px; } img { width: 100%; height: auto; opacity: 0.3; } </style> </head> <body> <h2>Image Text</h2> <p>Add some text to an image in the top left corner:</p> <div class="container"> <img src="img_5terre_wide.jpg" alt="Cinque Terre" width="1000" height="300"> <div class="topleft">Top Left</div> </div> </body> </html>