# Ghost text (B 011)

Category: Buttons  
Tags: ghost, borderless, text-button, minimal  
Page: https://designforai.dev/snippet/btn-011

## Prompt

A borderless ghost button: transparent background, grey text #4b5563 at 14px medium, 6px radius, 10px by 14px padding. Hover shows a #f3f4f6 background and darkens text to #111827. Active #e5e7eb. Focus outline 2px #6b7280.

## HTML

```html
<button class="btn-011">Cancel</button>
```

## CSS

```css
.btn-011 {
  font: 500 14px/1 system-ui,sans-serif;
  color: #4b5563;
  background: transparent;
  border: 0;
  border-radius: 6px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background .12s,color .12s
}
.btn-011:hover {
  background: #f3f4f6;
  color: #111827
}
.btn-011:focus-visible {
  outline: 2px solid #6b7280;
  outline-offset: 1px
}
.btn-011:active {
  background: #e5e7eb
}
```
