I would like to open the drop-down list to the left of the drop-down link, so this can be seen on tiny screens such as the iPhone. Is there a standard way to do this?
Here is my definition of a drop-down list - it would be nice to get some settings (class) by specifying a drop-down menu to align to the right and not the left side with a link.
<div class="four wide mobile three wide computer column"> <div class="ui compact dropdown doNotClose"> <i class="dropdown icon"></i> <span class="ui tiny header">Filters</span> <div class="menu"> <div class="item"> <div class="ui toggle checkbox"> <input type="checkbox" checked> <label>Acknowledge</label> </div> </div> <div class="item"> <div class="ui toggle checkbox"> <input type="checkbox" checked> <label>Active</label> </div> </div> </div> </div> </div>

source share