locked
repeater column when is @media (max-width:600px) { RRS feed

  • Question

  • User932259438 posted

    Hi,

    how can I used:

                                                                    <asp:CheckBoxList ID="chkCheckBox" CssClass="chkCheckBox" ForeColor="White" Font-Bold="false" RepeatColumns="3" runat="server"></asp:CheckBoxList>

    I need columns RepeatColumns=1 if we have max-width: 600px?

    Pls help. Thanks

    Thursday, August 4, 2016 10:21 AM

Answers

  • User364480375 posted

    hey try something like this:

    <asp:checkboxlist id="CheckBoxList1" runat="server" RepeatLayout="table" RepeatColumns="2" RepeatDirection="vertical"/>

    • Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
    Thursday, August 4, 2016 10:27 AM