maniat1k
maniat1k

Reputation: 460

Can I add a background to a <pre> on blogger?

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

Answers (2)

Pal Singh
Pal Singh

Reputation: 1974

yes you can but put color with "#"

pre{
    background-color: #EBECE4; 
} 

Upvotes: 8

amaters
amaters

Reputation: 2316

almost there:

pre{
    background-color: #EBECE4; 
} 

Upvotes: 5

Related Questions