hinesboy / mavonEditor

mavonEditor - A markdown editor based on Vue that supports a variety of personalized features
http://www.mavoneditor.com/
MIT License
6.38k stars 916 forks source link

[Question] 使用Mavon+百度地图API时出现的样式污染问题 #820

Closed lovelinessmoe closed 1 year ago

lovelinessmoe commented 1 year ago

引入百度地图API后百度地图会导致编辑器的图片样式崩塌

因为百度地图的css有个

image

他的id和mavon的id重复ld了 .shardo img

image

怎么滑动图片都是在最底下且大小被固定

解决方式

重写mavon的样式,恢复img为默认样式

#mavon_editor {
    img {
        position: static;
        height: auto;
        width: auto;
    }
}
image
lovelinessmoe commented 1 year ago

提交issues帮助后来遇到该问题的人