I have the following code snippet
<li className = "list-group-item list-group-item-success" key ={todo.id}>{todo.text}<a style="float:right;" onClick={() => props.onEdit(todo)}
className="edit-todo glyphicon glyphicon-edit" href="#"></a><a style="float:right;" onClick={() => props.onDelete(todo)}
className="delete-todo glyphicon glyphicon-trash" href="#"></a>
Is it possible to move the anchor elements to the far right side of the list item? Thank you.