align-controls

align-controls

Version compatibility

align-controls was introduced in version 4.86.1 of the JourneyApps Runtime.

Optional

Type: center|left | right

Default: right

Specify the alignment of the media component's controls.

Example - align-controls on capture-file

main.view.xml
 <columns>
    <column>
        <info>align-controls="center"</info>
        <capture-file align-controls="center" bind="my_file" label="" downloadable="true" />
    </column>
    <column>
        <info>align-controls="left"</info>
        <capture-file align-controls="left" bind="my_file" label="" downloadable="true" />
    </column>
    <column>
        <info>align-controls="right"</info>
        <capture-file align-controls="right" bind="my_file" label="" downloadable="true" />
    </column>
</columns>

Last updated