html5 - Showing several images at the same time -


i app , want show 2 images. 1 under other.

i have tried lots of things data role content dont know doing wrong.

any idea?

my html5 code:

<div data-role="page" id="p3"> <div data-role="content" id="orienthorizontal" style="padding:0px;">         <img src="imagens/horizontal/6.jpg"/>          <a href="#positionwindow" id="videoicon" data-rel="popup" data-inline="true" data-transition="slidefade" data-position-to="window"><img src="icon/video-icon.png"/></a>     </div> <div data-role="content" id="orienthorizontal" style="padding:0px;">         <img src="imagens/horizontal/6.2.jpg"/>     </div> </div> 

css:

#orienthorizontal{position:absolute} 

either define css such divs must display on separate lines, or can insert <br/> tag between them force line break.


Comments

Popular posts from this blog

c# - Send Image in Json : 400 Bad request -

javascript - addthis share facebook and google+ url -

ios - Show keyboard with UITextField in the input accessory view -