adjective

1090 of 3214
Other / Inward

vain - Having or showing an excessively high opinion of one's appearance, abilities, or worth

As an extremely vain man, Pete would constantly check his appearance in the mirror for imperfections.

// Auto-focus search input when modal opens var searchModal = document.getElementById('searchModal'); if (searchModal) { searchModal.addEventListener('shown.bs.modal', function () { var inp = searchModal.querySelector('input[name=search]'); if (inp) inp.focus(); }); }