跑步 ”
×
改变方向
在 Codepen 上打开
更改主题,深色/浅色
<!DOCTYPE html> <html> <head><meta http-equiv="content-security-policy" content="script-src 'none'"> <style> .container { position: relative; } .bottomright { position: absolute; bottom: 8px; right: 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="bottomright">Справа внизу</div> </div> </body> </html>