Skip to content

corrected custom.css file by adding dot notation-symbolizes class#67

Open
harshithaMMPS333 wants to merge 1 commit intolinuxfoundation:mainfrom
harshithaMMPS333:fix-bugsTypos
Open

corrected custom.css file by adding dot notation-symbolizes class#67
harshithaMMPS333 wants to merge 1 commit intolinuxfoundation:mainfrom
harshithaMMPS333:fix-bugsTypos

Conversation

@harshithaMMPS333
Copy link

The CSS class selector in custom.css was missing the dot (.) notation.
Because of this, the styles were not applied correctly in the browser.

added the proper dot prefix so the class is recognized as a valid CSS class selector.
This ensures the styling behaves as intended.

Before:
article p img, FeatureCallout
article iframe {
display: block;
margin-left: auto;
margin-right: auto;
max-width: 50%;
}

After:
article p img,
.FeatureCallout
article iframe {
display: block;
margin-left: auto;
margin-right: auto;
max-width: 50%;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants