i am using a semantic ui dropdown with the following code
$('.ui.dropdown')
.dropdown()
;
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.js"></script>
</head>
<body>
<select class="ui dropdown">
<option value="">Select option</option>
<option value="1">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
<option value="4">Option 4</option>
<option value="5">Option 5</option>
<option value="6">Option 6</option>
<option value="new">+Add new</option>
</select>
</body>
</html>
I am not able to give fixed position to the last option. I want the last option '+Add more' to have fixed position and should not get scrolled along with other options. I want the add new option to be like how it is in this image