# Mikro-Pille (B 195)

Kategorie: Buttons  
Tags: xs, micro, pill, tiny, neutral  
Seite: https://designforai.dev/de/snippet/btn-195

## Prompt

Ein extra kleiner Pillen-Button für Tabellenzeilen und Tags: 11px semibold #374151 Text, #f3f4f6 Hintergrund, 1px #e5e7eb Rahmen, 4px mal 9px Padding, voll abgerundet. Hover #e5e7eb, Active #d1d5db. Focus: 2px dunkle Outline mit 1px Offset.

## HTML

```html
<button class="btn-195">Edit</button>
```

## CSS

```css
.btn-195 {
  font: 600 11px/1 system-ui,sans-serif;
  color: #374151;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 4px 9px;
  cursor: pointer;
  transition: background .12s,border-color .12s
}
.btn-195:hover {
  background: #e5e7eb;
  border-color: #d1d5db
}
.btn-195:focus-visible {
  outline: 2px solid #374151;
  outline-offset: 1px
}
.btn-195:active {
  background: #d1d5db
}
```
