跑步 ”
×
改变方向
在 Codepen 上打开
更改主题,深色/浅色
<!DOCTYPE html> <html> <head><meta http-equiv="content-security-policy" content="script-src 'none'"> <style> .container { position: relative; } .bottomleft { position: absolute; bottom: 8px; left: 16px; font-size: 18px; } img { width: 100%; height: auto; opacity: 0.3; } </style> </head> <body> <h2>Текст изображения</h2> <p>Добавьте текст к изображению в нижнем левом углу:</p> <div class="container"> <img src="../images/img_5terre_wide.jpg" alt="Cinque Terre" width="1000" height="300"> <div class="bottomleft">Слева внизу</div> </div> </body> </html>