admin管理员组文章数量:1312888
I am developing an AngularJS application. In that, when I fetch data from the database to display it to the user, the extra spaces are trimmed to one space from the data which has more than one space between two words.
I tried <pre>
tag of HTML and it works fine except one thing. It changes the style of the text. I applied different CSS in <pre>
tag but I'm not getting the convenient result.
So how can I make it look like as it looks in normal HTML?
I'm attaching a sample:
<pre style="font-family: arial; font-size: 14px">{{name}}</pre>
It's working but it just doesn't help with the styles.
I am developing an AngularJS application. In that, when I fetch data from the database to display it to the user, the extra spaces are trimmed to one space from the data which has more than one space between two words.
I tried <pre>
tag of HTML and it works fine except one thing. It changes the style of the text. I applied different CSS in <pre>
tag but I'm not getting the convenient result.
So how can I make it look like as it looks in normal HTML?
I'm attaching a sample:
<pre style="font-family: arial; font-size: 14px">{{name}}</pre>
It's working but it just doesn't help with the styles.
Share Improve this question asked Jul 26, 2017 at 11:50 TheCleverIdiotTheCleverIdiot 4084 silver badges19 bronze badges 3- what do you want it to look like? – Luca Kiebel Commented Jul 26, 2017 at 11:54
-
Try to use
<p ng-bind-html="name"></p>
– Carnaru Valentin Commented Jul 26, 2017 at 11:54 - Thank you friends, Sajin's answer helped. – TheCleverIdiot Commented Jul 26, 2017 at 12:11
1 Answer
Reset to default 13Try
<p style='white-space: pre;'>
instead of pre
tag
本文标签: javascriptHow can I display the text in pre tag in the default fonts that html usesStack Overflow
版权声明:本文标题:javascript - How can I display the text in pre tag in the default fonts that html uses? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741904994a2404090.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论