function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
sa masasa masa 

The component is not using the correct font size. error

I am doing "Create and Edit Lightning Components" on trailhead

even I set follwing in campingHeader.css , could someoen give me hint?

H1.THIS {
    font-size: 18px;

Taiki YoshikawaTaiki Yoshikawa
Hi, Maybe 『18px』→『18pt』
h1.THIS {
    font-size: 18pt;
}

 
Ture Hoefner .Ture Hoefner .
Yes, it needs to be 18pt, not 18px for the lesson validator to pass.

That is a shame, because the example given in the lesson uses px, not pt:

p.THIS {
    font-size: 24px;
}