开发者

HTML/CSS: Making them elements besides eachother

开发者 https://www.devze.com 2023-01-29 18:21 出处:网络
I have this issue here: http://jsfiddle.net/MRvkT/ I wa开发者_如何学Gont both boxes to be besides eachother and not under eachother. I tried figure out what was wrong, I even tried to remove thethat

I have this issue here:

http://jsfiddle.net/MRvkT/

I wa开发者_如何学Gont both boxes to be besides eachother and not under eachother. I tried figure out what was wrong, I even tried to remove the that didnt help, but just made .nextPage and .prevPage buttons(see css) disappear.

How can I make them besides eachother?


I think this is what you want

http://jsfiddle.net/jfhartsock/MRvkT/1/

You simply need to apply float:left; here

.showprofile-image-scrollable-container
{
    position: relative;
    width: 110px;
    float:left;
}
0

精彩评论

暂无评论...
验证码 换一张
取 消