5
I wonder if there’s any chance of clip: rect(...)
really 'cut' the element in question, not just hiding it.
Here in this picture, without the clip: rect(...)
, shows the edge to exceed the space of your container (white box) and consequently the horizontal scroll appears.
In this we see the same thing but with the clip: rect(...)
, and we see nothing exceeding the container, only its 'empty'. Which also influences the horizontal scroll.
All content is adjustable to the width of the screen, if I increase or decrease the width of the window, the horizontal scroll stays the same.
Briefly, I’d like to know if there’s a solution for that edge that won’t take up that extra space.
You could not use absolute dimensions in border-Radius, and reduce the container?
– bfavaretto
Could you provide an example on a site like jsfiddle.com or jsbin.com? I would suggest that you use
margin-right: -12px /*algum número*/
, but I don’t know if it would work.– Gustavo Rodrigues
Just one question: Do you use any framework (bootstrap or similar)?
– Edgar Muniz Berlinck
Thanks for the suggestion, @bfavaretto! I do not intend to reduce the container, it will always be the width of the page. Fits. @Gustavorodrigues, I solved the situation by increasing the lateral margins of the
(...) li p
But still looking for a more reasonable solution, since this changes a little desirable layout, because the balloons move away from the sides. @Edgarmunizberlinck, I am not using any framework.– Patrick Costa