In my current project, I am using bootstreap v3.2
. I am facing an issue where I need to display fetched content from the database on a page using the <pre></pre>
tags. However, the problem is that the content is being displayed with the default bootstrap styles applied to the <pre></pre>
tag. I want to exclude CSS for this specific tag only. How can I achieve this?
Upon examining the pre CSS, it appears as follows:
pre {
display: block;
padding: 9.5px;
margin: 0 0 10px;
font-size: 13px;
line-height: 1.42857143;
color: #333;
word-break: break-all;
word-wrap: break-word;
background-color: #f5f5f5;
border: 1px solid #ccc;
border-radius: 4px;
}