HTML Pre标签未显示实线

时间:2017-04-07 16:36:01

标签: html

我在html页面中使用first = \ {'a' : {'b' : {'c' : ['d', 'e'], 'f' : ['g'] } } } def rec_list_to_dict(inp, sub_value = 0): if isinstance(inp, list): return dict(zip(inp, [sub_value ]*len(inp))) elif isinstance(inp, dict): return {key : rec_list_to_dict(el, sub_value) for key, el in inp.items()} else: raise AttributeError second = rec_list_to_dict(first, sub_value = 0) 标记,但它没有显示整行。我想要展示的是以下两条线:     

    Hello Wish you all the best. This is just a testing of multiline as it is cutting the print work order.Multi formatting within email notifications and work order comments/notes
    End Line. Last Comment.
    

但它只显示

<pre>

预标签是否有固定的东西?任何建议都会受到欢迎。

2 个答案:

答案 0 :(得分:2)

如果隐藏溢出,您需要显示隐藏内容的溢出。这将添加一个滚动条。

pre {
    overflow: auto;
}

或者,如果不能选择滚动,则需要包装预标签。为此用途

pre {
    white-space: pre-wrap;
}

现在该行将换行并显示在下一行,同时仍然保持空格。

答案 1 :(得分:1)

这是您提供的代码,包含在预标签中。从我家看起来很好。

&#13;
&#13;
<pre>
Hello Wish you all the best. This is just a testing of multiline as it is cutting the print work order.Multi formatting within email notifications and work order comments/notes
    End Line. Last Comment.
    </pre>
&#13;
&#13;
&#13;