Reputation: 460
what I want to do is to add a CSS background to a <pre>
.
Is it posible to do it like this?
pre{
background-color: EBECE4;
}
or I need to do a little more? I try like that but I did not work.
Upvotes: 3
Views: 11596
Reputation: 1974
yes you can but put color with "#"
pre{
background-color: #EBECE4;
}
Upvotes: 8