Engineering Tools for AI

Programmierung

CSS-Bearbeitungsbegriffe für Seitenänderungen

Eine durchsuchbare Referenz für Header, Buttons, Abstände, Hover-Zustände und responsive Änderungen.

63 Treffer

Seitenstruktur

Header

Header

Bedeutung

The top area of a page, usually holding the site title, navigation, theme controls, language controls, and menu button.

Änderung

Changing header padding, height, border, or position changes how tall and fixed the top area feels.

Hinweis

A taller header can reduce the visible content area, especially on mobile.

CSS

headerpaddingheightpositionborder-bottom

Beispielanfrage

Make the mobile header title smaller while keeping the header height the same.

Seitenstruktur

Footer

Footer

Bedeutung

The bottom area of a page, often used for links, legal text, contact information, or small navigation.

Änderung

Footer padding and border changes affect the amount of breathing room and the separation from the content above.

CSS

footerpaddingborder-topmargin-top

Beispielanfrage

Add more top padding to the footer so it does not feel attached to the content.

Seitenstruktur

Section

Section

Bedeutung

A large content area that groups related content such as a hero, tools list, reference cards, or article block.

Änderung

Section padding changes the vertical rhythm of the page. Background changes make the section feel separate.

CSS

sectionpadding-blockborder-topbackground

Beispielanfrage

Reduce the vertical padding of the tools section on mobile.

Seitenstruktur

Container

Container

Bedeutung

An inner wrapper that keeps page content from stretching too wide on large screens.

Änderung

Increasing max-width makes content wider. Increasing side padding keeps content away from screen edges.

CSS

max-widthmargin-inlinepadding-inline

Beispielanfrage

Make the main container a little narrower on desktop.

Seitenstruktur

Card

Card

Bedeutung

A framed block that presents one repeated item, such as a tool, reference entry, or result.

Änderung

Card padding, border, radius, and shadow control how dense or prominent each item feels.

CSS

borderborder-radiuspaddingbackgroundbox-shadow

Beispielanfrage

Make the reference cards more compact by reducing their padding.

Seitenstruktur

Panel

Panel

Bedeutung

A framed working area, usually holding controls, inputs, settings, or output.

Änderung

Panel spacing and layout changes affect how easy repeated tool use feels.

CSS

borderbackgroundpaddingdisplay

Beispielanfrage

Align the panel controls in one row on desktop and stack them on mobile.

Seitenstruktur

Navigation

Navigation

Bedeutung

A group of links or buttons used to move between major pages or categories.

Änderung

Gap, alignment, and visibility rules change how the navigation behaves on desktop and mobile.

CSS

navdisplaygapalign-items

Beispielanfrage

Hide the navigation links on small screens and keep the menu button visible.

Seitenstruktur

Menu

Menu

Bedeutung

A list of links or actions that opens from a button.

Änderung

Position, width, and z-index decide where the menu opens and whether it appears above other content.

Hinweis

If the menu is placed in normal document flow, it can push the whole page down.

CSS

positionrighttopz-indexwidth

Beispielanfrage

Make the menu open as a floating panel aligned to the right.

Seitenstruktur

Sidebar

Sidebar

Bedeutung

A vertical area at the left or right side of the page, often used for navigation or filters.

Änderung

Sidebar width and responsive rules decide whether it stays visible, collapses, or moves below content.

CSS

asidewidthpositiongrid-template-columns

Beispielanfrage

Move the filter sidebar below the content on mobile.

Seitenstruktur

Hero

Hero

Bedeutung

The first large section of a page that introduces the main purpose or action.

Änderung

Hero padding, title size, and layout affect the first impression and how much content fits in the first viewport.

CSS

paddingbackgroundmin-heightgrid

Beispielanfrage

Reduce the hero title size on mobile so the action buttons stay visible.

Abstand und Größe

Padding

Padding

Bedeutung

Space inside an element, between the border and the content.

Änderung

Increasing padding-top adds more space above the content inside the element.

Hinweis

More padding usually increases the visible size of the element.

CSS

paddingpadding-toppadding-rightpadding-bottompadding-left

Beispielanfrage

Increase the top padding of the header slightly.

Abstand und Größe

Margin

Margin

Bedeutung

Space outside an element, between it and neighboring elements.

Änderung

Increasing margin-bottom pushes the next element farther down.

CSS

marginmargin-topmargin-rightmargin-bottommargin-left

Beispielanfrage

Add more margin between the hero section and the tools list.

Abstand und Größe

Gap

Gap

Bedeutung

The space between items inside a flex or grid layout.

Änderung

Increasing gap spreads sibling items apart without adding extra space around the whole group.

CSS

gaprow-gapcolumn-gap

Beispielanfrage

Reduce the gap between the theme button, language button, and menu button.

Abstand und Größe

Width

Width

Bedeutung

The horizontal size of an element.

Änderung

A fixed width keeps the element stable. max-width lets it shrink on small screens.

CSS

widthmin-widthmax-width

Beispielanfrage

Make the menu panel width match its longest item.

Abstand und Größe

Height

Height

Bedeutung

The vertical size of an element.

Änderung

Fixed height can keep a header stable. max-height with overflow can keep dropdowns from becoming too tall.

CSS

heightmin-heightmax-height

Beispielanfrage

Keep the header height stable while making the title smaller.

Abstand und Größe

Max width

Max width

Bedeutung

The largest width an element is allowed to reach.

Änderung

Lowering max-width makes text lines shorter and panels narrower on large screens.

CSS

max-widthwidth

Beispielanfrage

Set a max-width on the dropdown so it does not cover too much of the page.

Abstand und Größe

Top / Right / Bottom / Left

Top / Right / Bottom / Left

Bedeutung

Position offsets used with positioned elements.

Änderung

right: 0 aligns a floating panel to the right edge of its positioned parent.

CSS

toprightbottomleftinset

Beispielanfrage

Align the open menu panel to the right side of the header controls.

Text

Font size

Font size

Bedeutung

The size of text.

Änderung

Reducing font-size helps long labels fit in tight spaces such as mobile headers.

CSS

font-sizetext-smtext-lg

Beispielanfrage

Make the mobile site title smaller but keep it on one line.

Text

Font weight

Font weight

Bedeutung

How thick or bold the text appears.

Änderung

Increasing font-weight makes labels more prominent without changing their size.

CSS

font-weightfont-boldfont-semibold

Beispielanfrage

Make the category labels a little bolder.

Text

Line height

Line height

Bedeutung

The vertical space each line of text occupies.

Änderung

Increasing line-height makes paragraphs easier to read. Reducing it makes compact UI labels tighter.

CSS

line-heightleading

Beispielanfrage

Increase the paragraph line-height in the hero description.

Text

Letter spacing

Letter spacing

Bedeutung

The space between individual letters.

Änderung

Small positive spacing can help uppercase labels feel clearer. Too much spacing can make Korean text awkward.

CSS

letter-spacingtracking

Beispielanfrage

Remove negative letter spacing from compact buttons.

Text

Text align

Text align

Bedeutung

The horizontal alignment of text inside its container.

Änderung

Right-aligned menu text can make a floating menu feel attached to the right edge.

CSS

text-align

Beispielanfrage

Right-align the menu item text inside the menu panel.

Text

Wrap / No wrap

Wrap / No wrap

Bedeutung

Whether long text can move to the next line or must stay on one line.

Änderung

No-wrap keeps a header stable, while wrapping can show more text but usually increases height.

CSS

white-spaceword-breakoverflow-wrap

Beispielanfrage

Keep the mobile title on one line and truncate the overflow.

Text

Truncate / Ellipsis

Truncate / Ellipsis

Bedeutung

A way to cut off overflowing single-line text and show dots.

Änderung

Truncation prevents layout breakage when labels are longer than expected.

CSS

overflowtext-overflowwhite-space

Beispielanfrage

Truncate the site title on very small screens.

Farbe und Hintergrund

Color

Color

Bedeutung

The color of text or icons.

Änderung

Changing color affects readability and visual priority.

CSS

color

Beispielanfrage

Make the selected language text visible in dark mode.

Farbe und Hintergrund

Background

Background

Bedeutung

The color or image behind an element's content.

Änderung

Background changes can separate panels, highlight active states, or improve contrast.

CSS

backgroundbackground-color

Beispielanfrage

Use a darker background for the selected language item in dark mode.

Farbe und Hintergrund

Opacity

Opacity

Bedeutung

How transparent an element is.

Änderung

Lower opacity makes elements quieter, but it can reduce readability.

CSS

opacityrgbacolor-mix

Beispielanfrage

Make disabled controls look dimmer without making the text unreadable.

Farbe und Hintergrund

Gradient

Gradient

Bedeutung

A smooth transition between two or more colors.

Änderung

Subtle gradients can add depth, but strong gradients can make tools feel less practical.

CSS

linear-gradientradial-gradientbackground-image

Beispielanfrage

Keep the hero background subtle and avoid a strong gradient.

Farbe und Hintergrund

Accent color

Accent color

Bedeutung

A repeated highlight color used for labels, active states, or important actions.

Änderung

Changing the accent color changes the page's visual identity and emphasis.

CSS

colorbackgroundborder-coloraccent-color

Beispielanfrage

Use the same green accent for category labels and active chips.

Farbe und Hintergrund

Contrast

Contrast

Bedeutung

The difference between foreground and background colors.

Änderung

Higher contrast improves readability, especially in dark mode and on mobile screens.

CSS

colorbackground-color

Beispielanfrage

Increase the contrast of dropdown items in dark mode.

Rahmen und Form

Border

Border

Bedeutung

A line around an element.

Änderung

Border width and color control how strongly a box or button is separated from the background.

CSS

borderborder-colorborder-widthborder-style

Beispielanfrage

Make the menu panel border slightly darker in dark mode.

Rahmen und Form

Border radius

Border radius

Bedeutung

How rounded the corners of a box or button are.

Änderung

A small radius feels practical and compact. A large radius feels softer and more playful.

CSS

border-radius

Beispielanfrage

Keep cards at an 8px border radius.

Rahmen und Form

Box shadow

Box shadow

Bedeutung

A shadow around an element that makes it feel raised above the page.

Änderung

Stronger shadows make floating menus or modals feel layered. Too much shadow can feel heavy.

CSS

box-shadow

Beispielanfrage

Add a subtle shadow to the floating menu panel.

Rahmen und Form

Outline

Outline

Bedeutung

A line shown around an element, often when it is focused by keyboard navigation.

Änderung

A clear outline helps keyboard users know which control is active.

CSS

outlineoutline-offset:focus-visible

Beispielanfrage

Keep a visible focus outline on icon buttons.

Rahmen und Form

Divider

Divider

Bedeutung

A line used to separate sections or groups.

Änderung

A divider can make category boundaries clearer without adding much visual weight.

CSS

border-topborder-bottomhr

Beispielanfrage

Add subtle dividers between menu categories.

Layout und Position

Display

Display

Bedeutung

The basic layout mode of an element.

Änderung

display: none hides an element. flex and grid arrange child items.

CSS

displaydisplay: nonedisplay: flexdisplay: grid

Beispielanfrage

Hide the desktop navigation on mobile screens.

Layout und Position

Flex

Flex

Bedeutung

A layout method for arranging items in a row or column.

Änderung

flex-direction: column stacks items vertically. flex-wrap allows items to move to the next line.

CSS

display: flexflex-directionflex-wrapgap

Beispielanfrage

Keep the header controls in a flex row.

Layout und Position

Grid

Grid

Bedeutung

A layout method for arranging content in rows and columns.

Änderung

Changing grid columns controls how many cards appear per row.

CSS

display: gridgrid-template-columnsgrid-columngap

Beispielanfrage

Show four tool cards per row on wide desktop screens.

Layout und Position

Align items

Align items

Bedeutung

How items are aligned on the cross axis inside flex or grid.

Änderung

align-items: center vertically centers controls in a header row.

CSS

align-itemsplace-items

Beispielanfrage

Vertically center the title and header buttons.

Layout und Position

Justify content

Justify content

Bedeutung

How items are distributed on the main axis inside flex or grid.

Änderung

justify-content: space-between pushes groups to opposite sides.

CSS

justify-contentjustify-itemsmargin-left: auto

Beispielanfrage

Keep the title on the left and controls on the right.

Layout und Position

Position

Position

Bedeutung

How an element is placed in relation to the page or another element.

Änderung

position: absolute lets a dropdown float without pushing the page layout down.

CSS

positionrelativeabsolutefixedsticky

Beispielanfrage

Make the menu panel absolute so it does not push the page down.

Layout und Position

Z-index

Z-index

Bedeutung

The stacking order of positioned elements.

Änderung

A higher z-index can place dropdowns above page content.

Hinweis

z-index only works predictably when positioning and stacking contexts are considered.

CSS

z-indexposition

Beispielanfrage

Raise the language dropdown above the menu panel.

Layout und Position

Overflow

Overflow

Bedeutung

What happens when content is larger than its container.

Änderung

overflow-y: auto allows a long menu to scroll instead of extending beyond the screen.

CSS

overflowoverflow-xoverflow-ymax-height

Beispielanfrage

Make long dropdown menus scroll inside a max-height.

Responsiv

Breakpoint

Breakpoint

Bedeutung

A screen width where the layout changes.

Änderung

Changing a breakpoint decides whether tablets behave more like mobile or desktop.

CSS

@mediasmmdlgxl

Beispielanfrage

Treat tablets as desktop for the top navigation.

Responsiv

Mobile

Mobile

Bedeutung

Styles intended for small phone-sized screens.

Änderung

Mobile styles often reduce font size, stack columns, and keep controls touch-friendly.

CSS

@mediamax-widthsm

Beispielanfrage

On mobile, stack the cards in one column.

Responsiv

Desktop

Desktop

Bedeutung

Styles intended for wider laptop or desktop screens.

Änderung

Desktop styles can use more columns, horizontal navigation, and wider content containers.

CSS

@mediamin-widthlgxl

Beispielanfrage

On desktop, keep the category navigation visible in the header.

Responsiv

Viewport

Viewport

Bedeutung

The visible area of the browser or device screen.

Änderung

Viewport units make sizes relative to the visible screen.

CSS

vwvh100vw100vh

Beispielanfrage

Limit the menu width to the viewport so it does not overflow on phones.

Responsiv

Responsive

Responsive

Bedeutung

A design that adjusts to different screen sizes.

Änderung

Responsive rules can make the same component horizontal on desktop and vertical on mobile.

CSS

@mediaclampmin()max()

Beispielanfrage

Make the controls responsive without changing their order.

Interaktionszustände

Hover

Hover

Bedeutung

The state when a mouse pointer is over an element.

Änderung

Hover styles can change background, text color, border, or shadow to show that an item is interactive.

Hinweis

Touch devices do not have reliable hover behavior, so important actions should also work by click or tap.

CSS

:hoverbackgroundcolortransition

Beispielanfrage

Add a background color change when hovering over menu items.

Interaktionszustände

Active

Active

Bedeutung

The short state while a button or link is being pressed.

Änderung

Active styles can make buttons feel tactile with a small color or position change.

CSS

:activetransformbackground

Beispielanfrage

Add a slight pressed effect to toolbar buttons.

Interaktionszustände

Focus

Focus

Bedeutung

The state when an input, button, or link is currently selected for keyboard or typing.

Änderung

Focus styles make keyboard navigation visible and accessible.

CSS

:focus:focus-visibleoutline

Beispielanfrage

Make the search input focus ring match the accent color.

Interaktionszustände

Disabled

Disabled

Bedeutung

A state where a control is visible but cannot be used.

Änderung

Disabled styles often reduce contrast and remove pointer interaction.

CSS

:disabledopacitycursorpointer-events

Beispielanfrage

Make disabled buttons visibly inactive but still readable.

Interaktionszustände

Selected

Selected

Bedeutung

The state of the currently chosen item in a list, tab group, or menu.

Änderung

Selected styles usually need stronger background or text color than normal items.

CSS

aria-currentdata-statebackgroundcolor

Beispielanfrage

Make the selected category chip clearly different from the others.

Interaktionszustände

Open / Closed

Open / Closed

Bedeutung

Whether a dropdown, menu, or accordion panel is currently visible.

Änderung

Open and closed states need clear indicators such as plus/minus icons or arrow rotation.

CSS

aria-expandeddisplayheightvisibility

Beispielanfrage

Keep all menu categories closed by default.

UI-Komponenten

Button

Button

Bedeutung

A control that performs an action when clicked or tapped.

Änderung

Button padding, border, color, and states determine how easy and important it feels.

CSS

buttonpaddingborderbackgroundcursor

Beispielanfrage

Make the primary action button more prominent than the secondary button.

UI-Komponenten

Icon button

Icon button

Bedeutung

A button represented mainly by an icon instead of text.

Änderung

Stable width and height prevent icon buttons from shifting as states change.

CSS

buttonwidthheightaria-labeldisplay: grid

Beispielanfrage

Keep the menu icon button square and aligned with the language button.

UI-Komponenten

Dropdown

Dropdown

Bedeutung

A floating list that appears after pressing a button or select control.

Änderung

Dropdown position, width, max-height, and z-index control placement and layering.

CSS

positiontoprightz-indexbox-shadow

Beispielanfrage

When the language dropdown opens, close the site menu.

UI-Komponenten

Accordion

Accordion

Bedeutung

A section that can be opened or closed to show or hide its content.

Änderung

Accordions make long menus shorter by keeping categories closed until needed.

CSS

aria-expandedheightdisplayoverflow

Beispielanfrage

Add open and close behavior to each menu category.

UI-Komponenten

Tabs

Tabs

Bedeutung

A control for switching between related views without leaving the page.

Änderung

Selected tab styling must clearly show which view is active.

CSS

role=tablistdisplayborderbackground

Beispielanfrage

Make the active tab background darker than inactive tabs.

UI-Komponenten

Modal

Modal

Bedeutung

A focused overlay panel that appears above the page.

Änderung

Modal width, backdrop, and z-index control how strongly it interrupts the page.

CSS

dialogposition: fixedinsetz-indexbackdrop

Beispielanfrage

Center the modal and keep it narrower than the viewport.

UI-Komponenten

Tooltip

Tooltip

Bedeutung

A small hint shown near a control, often on hover or focus.

Änderung

Tooltips help explain icon-only buttons without adding permanent text.

CSS

positiontitlearia-describedbyz-index

Beispielanfrage

Add a tooltip that labels the menu icon button.

UI-Komponenten

Input

Input

Bedeutung

A field where the user types text or values.

Änderung

Input padding, border, placeholder color, and focus style affect comfort and clarity.

CSS

inputborderpaddingplaceholder:focus

Beispielanfrage

Make the search input full width and easier to tap on mobile.

UI-Komponenten

Badge / Chip

Badge / Chip

Bedeutung

A small rounded label or filter control.

Änderung

Chip size, radius, and active color affect how scannable filters feel.

CSS

border-radiuspaddingbackgroundfont-size

Beispielanfrage

Make active category chips visually stronger.