How to preserve whitespace indentation of text enclosed in HTML
 tags excluding the current indentation level of the 
 tag in the document?

后端 未结 11 1453
萌比男神i
萌比男神i 2020-12-02 18:32

I\'m trying to display my code on a website but I\'m having problems preserving the whitespace indentation correctly.

For instance given the following snippet:

11条回答
  •  北海茫月
    2020-12-02 18:44

    If you are using this on a code block like:

      
        ...
      
    

    You can just use css like this to offset that large amount of white space in the front.

    pre code {
      position: relative;
      left: -95px; // or whatever you want
    }
    

提交回复
热议问题