Reputation: 39
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
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