How can I use my own CSS and HTML styling for Unordered or Ordered lists?

Hello,

I am new at Forge and I am trying to understand how to use CSS and HTML with Forge UI.

I am just trying to return something like that,

const App = () => {
    return (
        <Fragment>
            <ul>
                <li>Item 1 </li>
                <li>Item 2 </li>
           </ul>

         <Text style="background-color:white"> Random text </Text>
        </Fragment>
    );
};

I am aware of this https://developer.atlassian.com/platform/forge/custom-ui/ but is this the only way?

Thanks,

Mixalis

1 Like

Hi @VakalosMixalis,

Welcome to Forge :slight_smile:

Unfortunately, at the moment that’s not possible with UI Kit.

If you want to write your own HTML and CSS with no restrictions, you need to use Custom UI.

2 Likes