Think before you speak, read before you think.

WordPress中Pre标签自动换行

by

in

使WordPress中使用Pre标签,经常代码过长,不自动换行

主题–编辑–样式表 (style.css)

找到控制pre的部分

pre {    
        font-family: "Courier 10 Pitch", Courier, monospace;
        /* styles to make preformatted text wrap */
        white-space: pre-wrap;       /* css-3 */
        white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
        white-space: -pre-wrap;      /* Opera 4-6 */
        white-space: -o-pre-wrap;    /* Opera 7 */
        word-wrap: break-word;       /* Internet Explorer 5.5+ */
}

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *