The HTML of my slide show is the one I want to change style="width"
every time you change the size of the device.
<div class="leftside">
<div class="slideshow" id="slideshow">
<div class="slideshowarea">
<div class="slide">.</div>
<div class="slide">.</div>
<div class="slide">.</div>
<div class="slide">.</div>
</div>
</div>
</div>
CSS
.slideshow{
height: 335px;
background-color: #CCC;
overflow: hidden;
}
.slideshowarea{
width: 100000px;
height: 335px;
background-color: #DDD;
}
.slide{
height: 335px;
float: left;
}