Recently, I delved into the world of CSS and HTML. I created an application with pages designed using these languages. Here are the images representing my pages:
and the second one is the user page, which serves as the home page.
Below is a snippet of my .css file code:
body{
background-color:#D8D8D8;
background-image:url("../images/spring.png"), url("../images/security.png");
background-size:200px 100px, 200px 100px;
background-repeat:no-repeat, no-repeat;
background-position:top right, bottom right;
margin-right:200px;
margin-left:15px;
}
Issue: The alignment of the images on both pages is not consistent, and I'm struggling to position the second image at the bottom of the page like the first one appears at the top. Can anyone provide guidance on how to achieve this? Apologies for any language issues in my query. Thank you.