📒
wiki
  • Introduction
  • Coding
    • Git
    • NPM
    • Yarn
    • VIM
    • tmux
    • Terminal
    • HTML
    • Node
    • JavaScript
      • Types
    • TypeScript
    • React
    • Jest
    • FLow
    • Functional programming
    • Data Structures
    • Coding Exercises
    • Design Systems
    • VSCode
  • Learn
    • Languages
  • Health
  • Bikes
  • Ideas
  • Journals/Wiki
  • Looking back
    • 2019
      • September
      • October
      • November
      • December
Powered by GitBook
On this page

Was this helpful?

  1. Coding

HTML

Special characters

  - Non-breaking space

Hello   there!

× - HTML entity for close buttons. Alternative to the unicode ×

// an example of the close button with React handler and Bootstrap styles
<button
  type='button'
  onClick={() => onRemove(id)}
  className='btn btn-outline-danger btn-sm'
>
  &times;
</button>
PreviousTerminalNextNode

Last updated 3 years ago

Was this helpful?