Currently I'm having a problem with my code because I need the images to be displayed on the screen but it should come from right to left. The default is we put the <img>
codes and they are going to display the images from left to right. I just want you to put the codes <img>
the images start to appear from right to left. I currently have the code:
CSS
#includeload {
height: 300px;
width: 100%;
}
#align-rodape {
position: absolute;
margin-top: 150px;
}
#pagina-projetos {
min-height: 100%;
display: none;
margin-top: 70px;
}
HTML Structure
<div id="pagina-projetos">
<h1 class="page-header">Projetos</h1>
<div id="align-rodape" class="col-md-12">
<div class="image-row">
<div id="includeload" class="col-md-12"></div>
</div>
<a href="javascript:void(0);" id="submenu" page="comercial">Comercial</a> |
<a href="javascript:void(0);" id="submenu" page="industrial">Industrial</a> |
</div>
</div>