🔏
Knowledge
Ctrlk
  • README
  • Business
  • Dev
    • Apis
    • Blockchain
    • Composer
    • Css
    • Dev
    • Github
    • Hacking
    • Html
    • Javascript
    • Linux
    • Markdown
    • Open-source
    • Performance
    • Php
    • Programmieren
    • Regular-expressions
    • Security
    • Sql
    • Ssh
    • Tools
    • Web
    • Zip
  • Energy
  • Garten
  • Gesellschaft
  • Hof
  • Home-automation
  • Ideen
  • Landwirtschaft
  • Leben
  • Pc
  • Produktivitaet
  • Read
  • Sonstiges
  • Zukunft
Powered by GitBook
On this page
  1. Dev

Css

  • Selectors Explained

  • The Guide to Design

Grid

  • Full-Bleed Layout Using CSS Grid

  • Grids Part 1: To grid or not to grid

Images

  • BlurHash

Tailwind

  • tailwindcss

  • tailwindUI

  • Tailwind CSS Resources you wish you had

Snippets

Ellipsis

Truncate String with Ellipsis

Position fixed center

How To Center an Object Exactly In The Center

Links

  • CSS-Tricks

Design

Links

  • 40 pro tips for writing great microcopy

  • Aspect Ratio is Great

Inspiration

  • baremetrics

PreviousComposerNextDev

Last updated 3 years ago

Was this helpful?

  • Grid
  • Images
  • Tailwind
  • Snippets
  • Ellipsis
  • Position fixed center
  • Links
  • Design
  • Links
  • Inspiration

Was this helpful?

.text-ellipsis {
  width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.centered {
    position: fixed;
    top: 50%;
    left: 50%;
    /* bring your own prefixes */
    transform: translate(-50%, -50%);
}