Skip to main content
2026 Agentblazer 등급이 곧 시작될 예정입니다! 현재 트레일을 완료하시면 누구보다 앞서 나갈 수 있습니다. 업데이트 확인하기

Put HTML Class Binding into Practice

Learning Objectives:

After completing this unit, you’ll be able to:

  • Implement HTML class binding on a Lightning web component.
  • Modify a Lightning web component to dynamically apply CSS classes using JavaScript.

Ready to Get Hands-On?

Create a new Trailhead Playground now to follow along and try out the steps in this module. Scroll to the bottom of this page, click the playground name, and then select Create Playground. It typically takes 3–4 minutes for Salesforce to create your Trailhead Playground.

Note: Yes, we really mean a brand-new Trailhead playground! If you use an existing org or playground, you can run into problems completing the challenge.

Create a Lightning Web Component

In this unit, you put HTML class binding into practice on a Lightning web component. Start by creating the Lightning web component.

  1. Name: helloWorld
  2. Replace the contents of helloWorld.js with the following code. You will modify this file during the hands-on challenge.
import { LightningElement, api } from "lwc";


export default class extends LightningElement {
  @api objectApiName;


  get computedClassNames() {
    return [
    ];
  }
}
  1. Replace the contents of helloWorld.html with the following code. You will modify this file during the hands-on challenge.
<template>
  <div class="slds-box slds-theme_alert-texture slds-theme_shade">Hello, World!</div>
</template>
  1. Replace the contents of helloWorld.js-meta.xml with the following code.
<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata" fqn="helloWorld">
    <apiVersion>63.0</apiVersion>
    <isExposed>true</isExposed>
    <targets>
    <target>lightning__RecordPage</target>
    </targets>
</LightningComponentBundle>
  1. Deploy your helloWorld component to your Trailhead playground.

Salesforce 도움말에서 Trailhead 피드백을 공유하세요.

Trailhead에 관한 여러분의 의견에 귀 기울이겠습니다. 이제 Salesforce 도움말 사이트에서 언제든지 새로운 피드백 양식을 작성할 수 있습니다.

자세히 알아보기 의견 공유하기