Skip to content

Action card โ€‹

...

Browser support โ€‹

...

Parameters โ€‹

The CSS component uses an <article> tag with the z-action-card HTML custom attribute.

The parametrization of the component can be done with the following custom HTML params:

NameTypeDescription
z-action-cardstringCustom attribute for the action card component

INFO

Check the z-action-card anatomy. Use the Playground to see how you can customize this component.

Playground โ€‹

Customization โ€‹

HTML Examples โ€‹

Imports
html
<link rel="stylesheet" href="/0.3.6/@zurich/design-tokens/Icons.css" />
<link rel="stylesheet" href="/0.3.6/@zurich/css-components/base.css" />
<link rel="stylesheet" href="/0.3.6/@zurich/css-components/ActionCard.css" />
<link rel="stylesheet" href="/0.3.6/@zurich/css-components/Button.css" />
Code
html
<div>
  <article z-action-card>
    <button>
      <i z-icon="edit:outline"></i>
    </button>
    <img src="/0.3.3-rc.2/sample.png" alt="Action card image" />
    <main>
      <!-- <div>
      <div z-tag="default">
    </div>   -->
      <h3>Title</h3>
      <p>Description</p>
    </main>
    <button z-button="primary">Button</button>
  </article>
</div>
<div>
</div>