Utilizing Bootstrap has caused the <pre>
tag in my code to be styled, which I find undesirable. Despite knowing that I can override it, pinpointing the specific attributes that need adjustment to revert <pre>
back to its default HTML appearance is challenging.
<link rel="stylesheet" type="text/css" href="bootstrap.min.css">
<style type="text/css">
pre{
}
</style>
What modifications should I make within the <pre>
tag to remove the Bootstrap styling?