In Firefox Developer Tools Inspector, you can select multiple DOM nodes using one of these methods:
Ctrl (or Cmd on macOS) and clickCtrl (Windows/Linux) or Cmd (macOS) and click on additional nodes to add them to your selection.Ctrl+Shift+C (or Cmd+Shift+C on macOS) shortcutCtrl/Cmd.document.querySelectorAll() in the Console to select multiple nodes matching a CSS selector:
javascriptdocument.querySelectorAll("div, p");
NodeList of all matching elements.Note: Firefox does not support multi-select in the Inspector for editing (e.g., bulk styling), but you can inspect and debug multiple nodes simultaneously.
Vibe can make mistakes. Check answers. Learn more