运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> /* Default CSS Values */ img { display: inline-block; } </style> </head> <body> <p>An img element is displayed like this:</p> <p>Some text <img src="smiley.gif" alt="Smiley face" width="42" height="42"> some text.</p> <p>A customized img element (changed display):</p> <p>Some text <img src="smiley.gif" alt="Smiley face" width="42" height="42" style="display:block;"> some text.</p> </body> </html>