Bootstrap Links Interview
1How to style anchor as button?
Answer: Add
.btn and variant classes to <a>.2What are
.link-* classes?Answer: Utility classes to color and style links quickly.
3How to remove link underline?
Answer: Use
.text-decoration-none.4Accessibility for icon-only links?
Answer: Add accessible label (e.g.,
aria-label).5Safe external link pattern?
Answer:
target="_blank" with rel="noopener noreferrer".