[Bug Report] Menu width in IE11
See original GitHub issueEnvironment
Vuetify Version: 2.0.5 Last working version: 1.5.16 Vue Version: 2.6.10 Browsers: Internet Explorer OS: Windows 10
Steps to reproduce
- Go to https://vuetifyjs.com/en/components/menus#absolute-position-without-activator with IE11
- Try to open a menu
Expected Behavior
The menu should be displayed correctly.
Actual Behavior
The menu width is too small to display anything
Other comments
It works fine with the version 1 of Vuetify. See: https://vuetifyjs.com/en/components/menus#absolute-position-without-activator.
A temporary fix is to add a min-width
to <v-list>
Issue Analytics
- State:
- Created 4 years ago
- Reactions:1
- Comments:7 (4 by maintainers)
Top Results From Across the Web
IE11 is not displaying a correct width - CoffeeCup Software
CoffeeCup Forums - IE11 is not displaying a correct width - For my website I set the width of the body to 70%...
Read more >IE 11 / Edge CSS Print Bug? - Microsoft
I have a few pages with long <form>...</form> data. On screen the horizontal scrollbar appears so I can scroll up and down. But,...
Read more >Common Issues with IE 11 Browser - CRM - Support Wiki
When an F4 help is opened, the size of the popup is too small and if the popup is resized, a blank white...
Read more >9 Most Common IE Bugs and How to Fix Them - Code
Fix #1. The cause of this bug is pretty simple: IE simply refuses to size an element smaller than the set font size....
Read more >IE 11 flexbox child width not respecting content (Safari too)
padding: 0 10px; max-width: calc(100% - 20px);. Now if you do these steps and remove the white-space: nowrap then you'll be rid of...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Any updates on this? The “work-around” (adding a min-width) doesn’t seem to support dynamic widths, so not really a work-around.
I’m currently working around this by overriding
display: flex;
todisplay: block;
in.v-list-item
(see here). This is not ideal, but it’s a quick and dirty fix for the time being.