Ghost: Markdown设置图片宽度,避免页面被撑开
网上方法有很多
[图片标题](url =xxx)
[图片标题](url){width样式定义}
img的http标签写法,加入限制宽度属性
在文章头部加入样式定义
-- 最后我用了这种,有效!
设置方法
- 在文章的头部加入以下内容即可
<style> img{ width: 100%; padding-left: 0%; } </style>
[图片标题](url =xxx)
[图片标题](url){width样式定义}
img的http标签写法,加入限制宽度属性
在文章头部加入样式定义
-- 最后我用了这种,有效!<style>
img{
width: 100%;
padding-left: 0%;
}
</style>