Set Fragments width to 100%

How do I set the fragment width to 100% ?

Fragment tags and component doesn’t seem to have a “width” attribute.

CK

Hi,

Both fragment and component support nested properties element (similar to actions), e.g.

<component class="com.vaadin.flow.component.textfield.TextField">
    <properties>
        <property name="width" value="100%"/>
    </properties>
</component>

Regards,
Gleb