Can anybody test this in IE 11

HI ALL

this dropdown is working fine in chrome and firefox

but client says it doesnt works in IE-11

he says the dropdown is misplaced and is not under button

I dont have IE-11 to test

<!DOCTYPE html>
<html>
<head>
<style>
.dropbtn {
    background-color: #4CAF50;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {background-color: #f1f1f1}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}
</style>
</head>
<body>


<p>Move the mouse over the button to open the dropdown menu.</p>

<div class="dropdown">
  <button class="dropbtn">Dropdown</button>
  <div class="dropdown-content">
    <a href="#">Link 1</a>
    <a href="#">Link 2</a>
    <a href="#">Link 3</a>
  </div>
</div>
</body>
</html>

Maybe he means it extends to the right?

This is what I see with IE11

hi Mittineague

i will clarify with him again.

but how did you created this animated screenshot ??

what software did you used for it ??

vineet

I guess it isn’t the fanciest tool, but it meets my limited needs.

LICEcap

1 Like

Yes same for me in IE11 and Edge and matches Chrome also.

Looks the same in all browsers.

1 Like

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.