scrollbar

Remove The ScrollBar in the WebView Javafx [closed]

左心房为你撑大大i 提交于 2019-12-18 13:37:33
问题 It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 6 years ago . How to remove the scrollbar automatically in the WebView of Javafx ? When you click "Cadastre" will open a screen, this screen is in javascript and is unconfigured because of the scrollbar, so we wanted to remove

Change size of scrollbar thumb with CSS

…衆ロ難τιáo~ 提交于 2019-12-18 13:13:15
问题 I want to get a scrollbar with a thumb larger than the track. I can change the color, the opacity, everything, but I don't know how to change the size of the thumbs and the track separately. .custom_scrollbar::-webkit-scrollbar { width: 1px; } .custom_scrollbar::-webkit-scrollbar-track { background-color: rgb(255, 255, 255); -webkit-border-radius: 1px; } .custom_scrollbar::-webkit-scrollbar-thumb:vertical { background-color: rgb(142, 142, 142); -webkit-border-radius: 0px; -webkit-width:5; }

Change size of scrollbar thumb with CSS

六眼飞鱼酱① 提交于 2019-12-18 13:11:02
问题 I want to get a scrollbar with a thumb larger than the track. I can change the color, the opacity, everything, but I don't know how to change the size of the thumbs and the track separately. .custom_scrollbar::-webkit-scrollbar { width: 1px; } .custom_scrollbar::-webkit-scrollbar-track { background-color: rgb(255, 255, 255); -webkit-border-radius: 1px; } .custom_scrollbar::-webkit-scrollbar-thumb:vertical { background-color: rgb(142, 142, 142); -webkit-border-radius: 0px; -webkit-width:5; }

CSS3 scrollbar styling on a div

早过忘川 提交于 2019-12-18 11:16:35
问题 How can i style webkit scrollbars with CSS3? I mean these properties ::-webkit-scrollbar { width: 12px; } ::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); border-radius: 10px; } ::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); } Here is my div tag <div class="scroll"></div> Here is my current CSS .scroll { width: 200px; height: 400px; overflow: hidden; } 回答1: Setting overflow: hidden hides the scrollbar. Set

Disable vertical scroll bar on div overflow: auto

谁都会走 提交于 2019-12-18 10:14:44
问题 Is it possible to allow only a horizontal scroll bar when using overflow:auto (or scroll)? 回答1: These two CSS properties can be used to hide the scrollbars: overflow-y: hidden; // hide vertical overflow-x: hidden; // hide horizontal 回答2: You should use only overflow-y:hidden; - Use this for hiding the Vertical scroll overflow-x:auto; - Use this to show Horizontal scroll Luke has mentioned as both hidden. so I have given this separately. 回答3: overflow: auto; overflow-y: hidden; For IE8: -ms

CSS + FireFox: hiding scrollbar on iframe with scrolling=yes

ぃ、小莉子 提交于 2019-12-18 08:53:01
问题 I have an iframe with scrolling=yes. Is it possible to fully hide scrollbar using CSS for the Mozilla FireFox browser? For instance, on the Internet Explorer I'm using this: Overflow-x: hidden; Overflow-y: hidden; - and it hides scrollbars, but FireFox ignores this CSS. Here is screenshot from IE: alt text http://moismski.com/ie.png Here is screenshot from FireFox: alt text http://moismski.com/firefox.png I forgot to mention that I put CSS, to say exactly like this <style>body { overflow

Change the width of a scrollbar

删除回忆录丶 提交于 2019-12-18 08:09:33
问题 Is it possible to change the width of a scroll bar on a form. This app is for a touch screen and it is a bit too narrow. 回答1: The width of the scrollbars is controlled by Windows. You can adjust the scrollbar width in Display Properties and it will affect all windows on the terminal. 回答2: This is a Windows Forms application? I was able to make a very fat and thick scrollbar by adjusting the "Width" property of my scroll bar control. Is your scroll bar something you have programmatic access to

Scrollbars in dropdownlist inside DataGrid itemEditor not working

旧巷老猫 提交于 2019-12-18 07:02:33
问题 I have a DropDownList inside the itemEditor of my DataGrid. There are enough items in the DropDownList to justify scrollbars. You can see the scrollbars, and the mousewheel works fine. If you move the mouse over the scrollbars, they'll change appearance fine (mouseover is working). If you click on them, the DropDownList closes as if you'd clicked elsewhere in the data grid. There's a comment on the Adobe Forums that describe the same problem, but it is fairly old and has not been answered. I

Mouseup bug in all browsers except Firefox?

女生的网名这么多〃 提交于 2019-12-18 05:51:37
问题 Mouseup doesn't fire on scroll bar for elements dynamically added (except Firefox): CSS: #dBox { height: 100px; width: 230px; overflow - y: auto; } HTML: <input type="text" id="s"> JQuery: $(function() { $('#s').focus(function() { var $dbox = $('<ul id="dBox"></ul>'); for (i = 0; i < 10; i++) $dbox.append('<li>' + i + '</li>'); $(this).after($dbox); $dbox.bind("mouseup", function() { alert('in: '); //console.log ('in: '); }); }); }); // OR LIKE THIS $('#s').focus(function() { var $dbox = $('

how can I scroll my JFrame using the JScrollbar?

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-18 05:51:34
问题 I have a problem. I have a JFrame with some JTextFields, JLabels, Jlists & JButtons now the contents of my frame is more than the screen area so I want to attach a JScrollBar to my JFrame but my srollbar does not work. So, can anyone please guide me on how I can scroll my JFrame using the JScrollbar? 回答1: Put all the components in one panel (instead of in the JFrame) Add this panel to a JScrollPane Add the JScrollPane to your frame. I should be something like: JPanel container = new JPanel();