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
Anil Kumar H MAnil Kumar H M 

Move Combobox right to the text in LWC

Text on the right and combo box to the left how to do this
 

Product type as a text and combobox as a left how to do this .. in LWC

David Zhu 🔥David Zhu 🔥
You may use variant attibute to hide the label. Then put "Product Type" on the right.

 
<lightning-layout>
            <lightning-layout-item padding="horizontal-small">
                <lightning-combobox
                    name="progress"
                    label="Status"
                    value={value}
                    variant="label-hidden"
                    placeholder="Select Progress"
                    options={options}
                    onchange={handleChange}>
                </lightning-combobox> 
            </lightning-layout-item>
            <lightning-layout-item>
                <lightning-formatted-text value="Product Type"></lightning-formatted-text>
            </lightning-layout-item>
        </lightning-layout>