Pre code CSS style for blogs
one I kinda like to use...
pre {
width:400px;
overflow:auto;
background: #c3dcee;
padding: 5px;
color: #000;
}
one I kinda like to use...
pre {
width:400px;
overflow:auto;
background: #c3dcee;
padding: 5px;
color: #000;
}
Styling of <pre> tags
Thanks for the baseline. I ended up with something like this on my page:
pre {
width: 80%;
overflow:auto;
background: #F0EFFF;
padding: 5px;
color: #000;
border-style:solid;
border-color:#000000;
border-width:2;
}
But your post was very helpful in getting me there.