Home › Forums › Other › Working with different resolutions in HTML/CSS? › Reply To: Working with different resolutions in HTML/CSS?
January 5, 2015 at 11:41 am
#192269
Participant
Oh I see, I understand the fact that I’m using px and absolute to position my images is quite bad. The images are links. Here’s my code:
CSS:
.javaPic {
width:366px;
height:236px;
display:block;
border:1px solid white;
background:transparent url(image.png');
position:absolute;
top:50px;
left:552px;
}
HTML:
<a href="#" class="javaPic" title="Java"></a>