I am attempting to create a container with full width and a height of 150px
, but it's not displaying correctly, and the background color is not showing up as expected. Additionally, when I use the jQuery append function to add text, the font size remains unchanged.
Example HTML code:
<div id = "header"></div>
CSS styling:
#header{
height: 150px;
width: 110%;
font-size: 80px;
}
Javascript code snippet:
$(target).append(message);
where 'target' refers to the element with ID #header