adjective

13 of 69
Good / Strong

sturdy - Strong and solid and unlikely to break

The family built a tree house that proved to be very sturdy even during storms

// 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(); }); }