Still getting the hang of this! I'm working on a webpage with an image and text side by side in separate divs. I've positioned them correctly, but when I resize the page, the text changes size while the image stays the same. I want the text to always line up with the bottom of the image.
Appreciate any assistance! Here is the code:
<head>
<title>Stefano Mocini</title>
<link href='http://fonts.googleapis.com/css?family=Milonga' rel='stylesheet' type='text/css'>
<link href='styles/style.css' rel='stylesheet' type='text/css'>
</head>
<body>
<div id="title">
Stefano Mocini
</div>
<div id="decal">
<div id="image">
<img src="images/tree.png" alt="tree" width="600" height="900">
</div>
</div>
<div id="about">
<p>THANK YOU SO MUCH FOR YOUR REVIEWS; YOUR DONATION AND FOR SHARING MY MUSIC!!!</p>
<p>About me: I started made music when I was only 6, because in the computer there was installed fruity loops, and I used it like a game. but i soon started to try to reproduce what i listened in the radio, so, step by step, i started to learn how to use this softwer. After i started to play the keyboard, that I received like christmast gift. One day I listened to "Back to life" from Allevi, and I loved it so much that I started to play the piano, every day. Step by step i learned how to make music, and how music is made . So now i can use the softwer whereby I played whan i was a child to make my own music. What kind of music should I make? Simply the one that I like!</p>
<p>You can use my music for making non-commercial videos or projects, but please put the title of the song and the author in the description otf the video or in the credits of the video.</p>
<p>Commercial use of my music: by the PRO license, or contact me</p>
</div>
</body>
body {
font-family: 'Milonga', cursive;
}
#title {
font-size:72pt;
text-align:center;
}
#decal {
float:left;
width:50%;
float:left;
height:80%;
}
#image {
margin-top:60%;
}
#about {
font-size:24pt;
float:left;
width:50%;
padding-top:5%;
height:80%;
}