3
I couldn’t do it myself, I wanted your help. I would be very grateful if anyone could solve this problem for me.
This is my slide picture. This is my HTML code.
<div class="main">
<div class="slideshow">
<div class="sld-left">
<a href="#"><img src="img/img-01.jpg"/></a>
<a href="#"><h2>Lorem Ipsum é simplesmente uma simulação de texto da indústria</h2></a>
</div>
<div class="sld-right-top">
<a href="#"><img src="img/img-02.jpg"/></a>
<a href="#"><h2>Lorem Ipsum é simplesmente uma simulação</h2></a>
</div>
<div class="sld-right-bottom">
<a href="#"><img src="img/img-03.jpg"/></a>
<a href="#"><h2>Lorem Ipsum é simplesmente uma simulação</h2></a>
</div>
(-------------------------------2 slide-----------------------------------)
<div class="sld-left">
<a href="#"><img src="img/img-01.jpg"/></a>
<a href="#"><h2>Lorem Ipsum é simplesmente uma simulação de texto da indústria</h2></a>
</div>
<div class="sld-right-top">
<a href="#"><img src="img/img-02.jpg"/></a>
<a href="#"><h2>Lorem Ipsum é simplesmente uma simulação</h2></a>
</div>
<div class="sld-right-bottom">
<a href="#"><img src="img/img-03.jpg"/></a>
<a href="#"><h2>Lorem Ipsum é simplesmente uma simulação</h2></a>
</div>
</div>
</div>
.main{max-width:1150px; padding:20px; margin:0 auto; height:500px; overflow:hidden;}
.slideshow{width:100%; display:block; height:auto;}
.sld-left{width:65%; height:auto; float:left;}
.sld-right-top{width:35%; height:auto; float:left;}
.sld-right-bottom{width:35%; height:auto; float:right; margin-top:-4px;}
Hello, you can use GRID CSS, http://960.gs/ or bootstrap http://getbootstrap.com/css/
– PauloHDSousa
Ctrl+c then Ctrl+v twice...
– SneepS NinjA
I don’t know how to use these frameworks. And I’ve read an article saying that these frameworks are very limited.
– Gilmar Santos
Well, they’re more than good for what you want. Or you can do at hand, what’s the problem? What css have you done?
– PauloHDSousa
I like to do the css in hand.
– Gilmar Santos