How to make a JS horizontal content slide from px to % responsive

前端 未结 2 914
谎友^
谎友^ 2021-01-17 05:53

This is driving me mad: I have a small bit jquery who slides three divs horizontally.

FIDDLE

Edit 3: Live demo; complete website showing how I want i

2条回答
  •  花落未央
    2021-01-17 06:37

    From what I have understood from your question, you have the issue with panel3. You can use to avoid this type of annoyances.check live demo

    .panel1, .panel2, .panel3
    {
        float: left;
        height: 800px;
        padding: 5px ;
        overflow: none;
    } 
    

提交回复
热议问题