+ 3
How can i put a photo in background in front of a color ?
2 Answers
+ 2
Style
<style type="text/css"> #grey-bg { position: fixed; top: 0px; left: 0px; width: 100%; height: 25%; background-color: grey; } body { background-color:white; } </style>
Body
<div id="grey-bg"> <center><img src="/imageaddress" alt="Prototype" /></center> </div>
+ 4
Thank you veryy muchđ€đ€