/Wiki/sources/honojs__hono/2026/https-hono-dev-llms-full-txt-extending-e8d4d36a3f5c-extending-s0696-c0000.md

Extending - hono-docs

Extending Source evidence: /Sources/raw/honojs hono/honojs hono.md Canonical citation: https://hono.dev/llms full.txt extending Summary You can extend the CS...

Extending

Source evidence: /Sources/raw/honojshono/honojshono.md Canonical citation: https://hono.dev/llms-full.txt#extending

Summary

You can extend the CSS definition by embedding the class name. ``tsx const baseClass = css color: white; background-color: blue; const header1Class = css ${baseClass} font-size: 3rem; const header2Class = css ${baseClass} font-si...

Content

You can extend the CSS definition by embedding the class name.

const baseClass = css`
  color: white;
  background-color: blue;
`

const header1Class = css`
  ${baseClass}
  font-size: 3rem;
`

const header2Class = css`
  ${baseClass}
  font-size: 2rem;
`

In addition, the syntax of ${baseClass} {} enables nesting classes.

const headerClass = css`
  color: white;
  background-color: blue;
`
const containerClass = css`
  ${headerClass} {
    h1 {
      font-size: 3rem;
    }
  }
`
return c.render(
  <div class={containerClass}>
    <header class={headerClass}>
      <h1>Hello!</h1>
    </header>
  </div>
)
Kinic Wiki
Loading knowledge node
Details

Identity

database
db_23dhmsxlhukv
database_id
db_23dhmsxlhukv
path
/Wiki/sources/honojs__hono/2026/https-hono-dev-llms-full-txt-extending-e8d4d36a3f5c-extending-s0696-c0000.md
kind
directory
role
markdown_note
children
0

Metadata

created_at
virtual
updated_at
virtual
etag
virtual
metadata_json
{}

Lint Hints

No lightweight warnings.

Outgoing Links

No outgoing links indexed.

Incoming Links

Select a file node to inspect backlinks.

Raw Source

No raw source path inferred.