调整页面css样式

有时候用的前端插件样式你自己需要微调,或者element.style覆盖了你的样式

直接打开浏览器控制台,然后自己看着调整,再在这里写上优化后的样式就行 ,记得加 !important

<style type="text/css">
        .iframss {
            width: 75% !important;
        }
        .container {
            width: auto !important;
            margin-left: 87px !important;
        }
   
    style>

例如,调了这个(F12)按element
调整页面css样式_第1张图片
然后加上这个了

<style type="text/css">
        body {
            margin-left:50px !important;
        }
    style>

你可能感兴趣的:(笔记)