There is a page on my website that has a LARGE flowchart, something like this:
$-----$
\ / ( Assuming $ is an image and -, /, \ are lines )
$ $
When I view this page on my phone, it looks horrible. The images and the lines are scattered. How can I fix this?
Thanks!
HTML:
<div class="imagecontainer">
<img class="image" src="somesource">
<img class="image" src="somesource">
<img class="image" src="somesource">
<img class="image" src="somesource">
</div>
<div id="line1" class="line"></div>
CSS:
.image {
background-color: #fff;
border: 2px solid #000000;
width: 120px;
}
.line {
background-color: #000000;
position: absolute;
width: 5px;
}
#line1 {
height: 237px;
left: 300px;
top: 300px;
}