html - Why doesn't the text in my div appear? -


i new web development, , want have footer various info @ bottom of site (and have banner , info appear upon hovering on banner be). @ moment have black banner text within not show. have tried putting text between p tags within div , assigning bannertext class no avail. want text allign left of footer. here have now.

#creditsbanner {    position: fixed;    height: 15px;    background-color: black;    bottom: 0%;    width: 100%;    opacity: 1;    z-index: +1;    font-family: 'gill sans', 'gill sans mt', 'arial', sans-serif;    font-size: 100px;    color: white;    text-align: left;  }
<div id="creditsbanner">    hanadulset  </div>

because of css height value.change auto

#creditsbanner {      height:auto     } 

demo: https://jsfiddle.net/1h105ae6/


Comments

Popular posts from this blog

asynchronous - C# WinSCP .NET assembly: How to upload multiple files asynchronously -

aws api gateway - SerializationException in posting new Records via Dynamodb Proxy Service in API -

asp.net - Problems sending emails from forum -