Morph
FeaturesHow it WorksCodeCLIDocs
← Docs Home
Getting Started
  • Introduction
  • Installation
  • Quick Start
  • Configuration
  • Project Structure
Concepts
  • How It Works
  • Dev Mode
  • Build Mode
Elements
  • HTML Elements
  • Conditional Rendering
  • Events
CSS
  • CSS Properties
  • Animations
  • Transitions
  • Transforms
  • Flexbox
  • Tailwind CSS
JavaScript
  • Overview
  • State
  • Effects
  • Async & Networking
  • Runtime Types
Guides
  • C++ / JSX Interop
  • Custom C++ Nodes
  • Dynamic Styles
CLI
  • CLI Commands
Examples
  • Calculator
  • Dynamic
  • IP Checker
← All docs
Fetching documentation…
Morphby Levizr
GitHubDocsLicense

CSS Properties

Morph supports a subset of CSS properties that map to native OpenGL rendering. Properties can be set via inline styles, CSS rules, or Tailwind utilities.

Sizing

Property Values Default Notes
width auto, px, % auto
height auto, px, % auto
min-width px 0
min-height px 0
max-width px — Constrains child width in layout
max-height px —

Box Model

Property Values Default Notes
margin px, auto 0 Shorthand for all sides. auto = horizontal centering.
margin-top px 0
margin-right px 0
margin-bottom px 0
margin-left px 0
padding px 0 Shorthand for all sides.
padding-top px 0
padding-right px 0
padding-bottom px 0
padding-left px 0
box-sizing content-box, border-box content-box

margin: auto is re-resolved dynamically on window resize, so centered elements stay centered.

Visual

Property Values Default Notes
background-color hex, rgb, named transparent Transparent by default (no white background).
color hex, rgb, named #000000 Text color. Inherits from parent.
border-radius px 0 Clamped to [0, 100] in the SDF shader.
opacity 0–1 1 Multiplies with parent opacity.

Border

Property Values Default Notes
border shorthand — border: 2px solid #fff expands to width/style/color.
border-width px 0
border-color hex, rgb #000000
border-style none, solid none Only solid is supported.

Typography

Property Values Default Notes
font-size px, %, em, bare number 16px Inherits from parent.
font-weight normal, bold, 100–900 normal Bold uses DejaVuSans-Bold.ttf.
text-align left, center, right left Inherits from parent.

Style inheritance: color, font-size, font-weight, and text-align cascade from parent to children.

Layout

Property Values Default Notes
display block, inline, flex, hidden block
overflow visible, hidden, scroll, auto visible auto/scroll enable scroll containers.
position static, absolute, relative, fixed static relative/fixed in progress.
left px —
right px —
top px —
bottom px —
z-index int — Negative/block/inline/auto/positive stacking layers.

Flexbox

Property Values Default Notes
flex-direction row, column, row-reverse, column-reverse row
flex shorthand initial flex: 1 = 1 1 0%, flex: none = 0 0 auto, flex: auto = 1 1 auto
flex-grow number 0
flex-shrink number 1
flex-basis auto, px auto
flex-wrap nowrap, wrap nowrap
justify-content flex-start, center, flex-end, space-between, space-around flex-start
align-items flex-start, center, flex-end, stretch stretch
gap px 0

See Flexbox for a deep-dive.

Cursor

Property Values Default
cursor default, pointer, text default

Scrollbar

Property Values Default
scrollbar-width px 8
scrollbar-track-color hex, rgb semi-transparent gray
scrollbar-thumb-color hex, rgb semi-transparent gray
scrollbar-border-radius px 4

Transition

Property Values Default Notes
transition shorthand — all 0.3s ease-in-out
transition-duration seconds 0
transition-timing-function linear, ease, ease-in, ease-out, ease-in-out ease-in-out

See Transitions for details.

Transform

Property Values Default Notes
transform functions none translate(), rotate(), scale(), skew(), matrix()
transform-origin px/% 50% 50%

See Transforms for details.

Animation

Property Values Default Notes
animation shorthand — name duration timing-function delay iteration-count direction fill-mode
animation-name keyframe name —
animation-duration seconds 0
animation-timing-function easing ease
animation-delay seconds 0
animation-iteration-count number, infinite 1 Fractional values supported (e.g. 2.5).
animation-direction normal, reverse, alternate, alternate-reverse normal
animation-fill-mode none, forwards, backwards, both none

See Animations for details.

← PreviousEventsNext →Animations