Comments on: overflow https://css-tricks.com Tips, Tricks, and Techniques on using Cascading Style Sheets. Tue, 04 Jan 2022 01:07:22 +0000 hourly 1 https://wordpress.org/?v=6.1.1 By: michael https://css-tricks.com/almanac/properties/o/overflow/#comment-1763223 Sat, 26 Sep 2020 22:54:36 +0000 http://css-tricks.com/?page_id=14081#comment-1763223 thanks a lot. very explanatory. i used it a couple times but couldnt get an explicit explantion. thanks once again

]]>
By: Ke1van https://css-tricks.com/almanac/properties/o/overflow/#comment-1755558 Mon, 06 Apr 2020 12:59:57 +0000 http://css-tricks.com/?page_id=14081#comment-1755558 Hey there , Thanks for this article but I wanna know how to visible overflow only for one side of an element, like only for top or left.

]]>
By: Vincent https://css-tricks.com/almanac/properties/o/overflow/#comment-1636329 Mon, 04 Jun 2018 15:09:19 +0000 http://css-tricks.com/?page_id=14081#comment-1636329 In reply to Paul Kane.

This is doubtlessly too late, but I sure would have appreciated an answer to this thread last week, so here’s what I figured out.

I was never able to get it working with 100% width in its containing element, but things went pretty easy once I switched to vw units (a unit that is 1% the size of the viewport). If you’re aiming to do the full width of the viewport anyway, 100vw is a fine alternative to 100%.

In my specific case, I actually wanted a horizontal scrollable to be placed next to a fixed-width column. Since using 100% kept giving me trouble, I put a calc() in to subtract out the column’s width from the total viewport: calc(100vw - 470px).

]]>
By: Sufi https://css-tricks.com/almanac/properties/o/overflow/#comment-1610426 Thu, 20 Jul 2017 06:33:53 +0000 http://css-tricks.com/?page_id=14081#comment-1610426 IOS safari scrolls not working. Here is the code below. Anybody knows what’s the problem.

.chat-holder{
    padding: 20px 10px;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
]]>
By: wdtime.ru https://css-tricks.com/almanac/properties/o/overflow/#comment-1604942 Fri, 11 Nov 2016 14:09:12 +0000 http://css-tricks.com/?page_id=14081#comment-1604942 https://wdtime.ru/css/overflow-css-perepolnenie-elementa

]]>
By: Selva Thibagar https://css-tricks.com/almanac/properties/o/overflow/#comment-1604475 Fri, 07 Oct 2016 07:11:21 +0000 http://css-tricks.com/?page_id=14081#comment-1604475 In reply to Sumit Gera.

use overflow-x:hidden; this is more good

]]>
By: msbdexter2611 https://css-tricks.com/almanac/properties/o/overflow/#comment-1602115 Thu, 09 Jun 2016 17:25:07 +0000 http://css-tricks.com/?page_id=14081#comment-1602115 In reply to msbdexter2611.

HTML CODE:

Hello
200X200

]]>
By: msbdexter2611 https://css-tricks.com/almanac/properties/o/overflow/#comment-1602114 Thu, 09 Jun 2016 17:18:26 +0000 http://css-tricks.com/?page_id=14081#comment-1602114 Overflow tag not working?!
I want to create the whole div element of 200 by 200 like this:
http://weedbeats.com/resident-djs/
When you hover over artist’s images…

HTML CODE:
”’

Hello
200X200

”’

CSS CODE:
”’#a
{
width: 200px;
height: 200px;
overflow: hidden;
background-color: #cc4400;
}
#b
{
position: absolute;
height: 100px;
width: 200px;
padding: 0;
margin: 0;
transform: translatey(200px);
background-color: #404040;
transition-property: all;
transition-duration: 1s;
}
#c
{
position: absolute;
width: inherit;
height: inherit;
margin: 0;
}
#a:hover > #b
{
transform: translatey(100px);
background-color: 606060;
}”’

]]>
By: Irshad https://css-tricks.com/almanac/properties/o/overflow/#comment-1601506 Fri, 13 May 2016 07:32:23 +0000 http://css-tricks.com/?page_id=14081#comment-1601506 Hello, I am trying to add multiple select in a div which is having a overflow:scroll but the drop down is within the div it has to appear outside the div. Can you please suggest me how to solve the issue.

https://jsfiddle.net/irshadmb/a3z5ccax/

]]>
By: Antek https://css-tricks.com/almanac/properties/o/overflow/#comment-1595695 Tue, 07 Jul 2015 10:49:22 +0000 http://css-tricks.com/?page_id=14081#comment-1595695 Hi, i have problem with overflow-x:hidden and overflow-y:visible. Here is example:https://jsfiddle.net/31mkqbwp/2/ why when I set overflow-x:hidden on #container, overflow-y:visible is not working and there is always vertical scrollbar?

]]>
By: Rutger https://css-tricks.com/almanac/properties/o/overflow/#comment-1595395 Thu, 25 Jun 2015 10:36:05 +0000 http://css-tricks.com/?page_id=14081#comment-1595395 Great article! I’m currently experiencing some troubles on Android 4.4.2 (Samsung Tab) where I cannot get the overflow containers to scroll. Your demo works fine on the same device. On my phone (Android) and other test-devices (iPhone, iPad) it works just fine.

Does anybody know of a current Android ‘overflow: scroll’ or ‘overflow: auto’ problem? Or does anyone have the same issues.

Can’t provide the dev code, but I think all the relevant css is there:

.box { 
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: 35em;
}

Any help would be great!

]]>
By: Bill Frost https://css-tricks.com/almanac/properties/o/overflow/#comment-1593667 Sat, 04 Apr 2015 13:12:06 +0000 http://css-tricks.com/?page_id=14081#comment-1593667 In reply to Paul Kane.

Was there a response to this question? I have the same requirement. Thanks, Bill. The question was “..is possible when the container element does not have a fixed width? In other words, where the wrapper is not explicitly set but is instead defined by the page wrapper or body? (In other words, ‘100%’)”

]]>
By: Saulo Bruno Matos Venancio https://css-tricks.com/almanac/properties/o/overflow/#comment-1593656 Fri, 03 Apr 2015 21:47:34 +0000 http://css-tricks.com/?page_id=14081#comment-1593656 awesome

]]>
By: Rama Krishna https://css-tricks.com/almanac/properties/o/overflow/#comment-1588470 Wed, 07 Jan 2015 09:53:44 +0000 http://css-tricks.com/?page_id=14081#comment-1588470 how to make scrollbars visible both on android as well as ios…

]]>
By: Priyanga https://css-tricks.com/almanac/properties/o/overflow/#comment-1581623 Sat, 24 May 2014 07:42:17 +0000 http://css-tricks.com/?page_id=14081#comment-1581623 How to change the scrollbars color?

]]>