初始导入的图像过大:
使用如下代码替换:
<img src="url" width="60%" alt=""/>
url是红色括号里面的内容;width或者height也可以设置绝对大小width="200"
最终变成:
<img src="https://img-blog.csdnimg.cn/20210302132914457.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3FxXzQxNTk4MDcy,size_16,color_FFFFFF,t_70" height="300" alt=""/>
如何居中?
在前后加上<center> </center>
<center>
<img src="https://img-blog.csdnimg.cn/20210302132914457.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3FxXzQxNTk4MDcy,size_16,color_FFFFFF,t_70" height="300" alt=""/>
</center>
