# Mikro-Taste (B 196)

Kategorie: Buttons  
Tags: xs, micro, keyboard, mono, rectangle  
Seite: https://designforai.dev/de/snippet/btn-196

## Prompt

Ein winziger Button im Stil einer Tastaturtaste: Monospace 11px semibold #475569 Text (z.B. Command K), weiß, 1px #cbd5e1 Rahmen mit 2px Unterkante für den Tasten-Look, 5px Radius, 3px mal 7px Padding. Hover hellt auf #f8fafc mit dunklerem Text auf; Active senkt 1px und verdünnt die Unterkante auf 1px, damit sie gedrückt aussieht. Focus: 2px graue Outline.

## HTML

```html
<button class="btn-196">&#8984;K</button>
```

## CSS

```css
.btn-196 {
  font: 600 11px/1 ui-monospace,Menlo,monospace;
  color: #475569;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-bottom-width: 2px;
  border-radius: 5px;
  padding: 3px 7px;
  cursor: pointer;
  transition: transform .08s,border-bottom-width .08s,background .12s
}
.btn-196:hover {
  background: #f8fafc;
  color: #0f172a
}
.btn-196:focus-visible {
  outline: 2px solid #475569;
  outline-offset: 2px
}
.btn-196:active {
  transform: translateY(1px);
  border-bottom-width: 1px;
  background: #f1f5f9
}
```
