Agata Cortle
Agata Cortle

Reputation: 39

Style inside div tag

I try to modify the style of div tag using this:

<div style="background-color: #ffff0g; border-style: solid; border-color: #000000; height: 500px">

However the height doesn't working. Is there anything I should fix in the code?

Upvotes: 3

Views: 41297

Answers (1)

Lalji Tadhani
Lalji Tadhani

Reputation: 14159

Check blow html with inline css

<div style="background-color: #ffff00; border-width:1px; border-style: solid; border-color: #000000; height: 500px">

Upvotes: 4

Related Questions