CKEditor 填充

发布于 2024-12-05 21:25:00 字数 318 浏览 2 评论 0原文

将以下样式添加到我的页面可以删除 FireFox 和 Chrome 中的圆角。 (IE 一开始就没有圆角)。在 FireFox 和 Chrome 中,它还会删除编辑器和边框之间的填充,但在 IE 中不会。我完全不明白为什么 IE 中的填充没有被删除

span.cke_skin_kama 
{
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    -o-border-radius: 0px;
    border: 1px solid #D3D3D3;
    padding: 0px;
}

Adding the following style to my page removes the rounded corners from FireFox and Chrome. (IE didn't have rounded corners to start with). In FireFox and Chrome it also removes the padding between the editor and the border but in IE it does not. I am totally stomped as to why the padding is not being removed in IE

span.cke_skin_kama 
{
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    -o-border-radius: 0px;
    border: 1px solid #D3D3D3;
    padding: 0px;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

謸气贵蔟 2024-12-12 21:25:00

这解决了问题

span.cke_skin_kama 
{
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    -o-border-radius: 0px;
    border: 1px solid #D3D3D3;
    padding: 0px !important;
}

This solved the problem

span.cke_skin_kama 
{
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    -o-border-radius: 0px;
    border: 1px solid #D3D3D3;
    padding: 0px !important;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文