How to full width to inlined buttons? [duplicate]












0
















This question already has an answer here:




  • How do I remove the space between inline-block elements?

    35 answers




I'm having this kind of problem because I already tried this code:






.form {
position: relative;
width: 80%;
background: #CCC;
}

.btn-one,
.btn-two {
position: relative;
height: 35px;
width: 50%;
border: 0;
border-radius: 4px;
color: white;
background: Steelblue;
display: inline-block;
}

<div class="form">
<button class="btn-one">Button 1</button>
<button class="btn-two">Button 2</button>
</div>





But the result is that the .btn-two ends up being on the new line or at the bottom of .btn-one.
How can I make this full width without spaces while they're inlined? I hope someone will suggest an answer without the use of Bootstrap. Only in pure CSS.










share|improve this question















marked as duplicate by Temani Afif css
Users with the  css badge can single-handedly close css questions as duplicates and reopen them as needed.

StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;

$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');

$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 24 '18 at 8:45


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.




















    0
















    This question already has an answer here:




    • How do I remove the space between inline-block elements?

      35 answers




    I'm having this kind of problem because I already tried this code:






    .form {
    position: relative;
    width: 80%;
    background: #CCC;
    }

    .btn-one,
    .btn-two {
    position: relative;
    height: 35px;
    width: 50%;
    border: 0;
    border-radius: 4px;
    color: white;
    background: Steelblue;
    display: inline-block;
    }

    <div class="form">
    <button class="btn-one">Button 1</button>
    <button class="btn-two">Button 2</button>
    </div>





    But the result is that the .btn-two ends up being on the new line or at the bottom of .btn-one.
    How can I make this full width without spaces while they're inlined? I hope someone will suggest an answer without the use of Bootstrap. Only in pure CSS.










    share|improve this question















    marked as duplicate by Temani Afif css
    Users with the  css badge can single-handedly close css questions as duplicates and reopen them as needed.

    StackExchange.ready(function() {
    if (StackExchange.options.isMobile) return;

    $('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
    var $hover = $(this).addClass('hover-bound'),
    $msg = $hover.siblings('.dupe-hammer-message');

    $hover.hover(
    function() {
    $hover.showInfoMessage('', {
    messageElement: $msg.clone().show(),
    transient: false,
    position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
    dismissable: false,
    relativeToBody: true
    });
    },
    function() {
    StackExchange.helpers.removeMessages();
    }
    );
    });
    });
    Nov 24 '18 at 8:45


    This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.


















      0












      0








      0









      This question already has an answer here:




      • How do I remove the space between inline-block elements?

        35 answers




      I'm having this kind of problem because I already tried this code:






      .form {
      position: relative;
      width: 80%;
      background: #CCC;
      }

      .btn-one,
      .btn-two {
      position: relative;
      height: 35px;
      width: 50%;
      border: 0;
      border-radius: 4px;
      color: white;
      background: Steelblue;
      display: inline-block;
      }

      <div class="form">
      <button class="btn-one">Button 1</button>
      <button class="btn-two">Button 2</button>
      </div>





      But the result is that the .btn-two ends up being on the new line or at the bottom of .btn-one.
      How can I make this full width without spaces while they're inlined? I hope someone will suggest an answer without the use of Bootstrap. Only in pure CSS.










      share|improve this question

















      This question already has an answer here:




      • How do I remove the space between inline-block elements?

        35 answers




      I'm having this kind of problem because I already tried this code:






      .form {
      position: relative;
      width: 80%;
      background: #CCC;
      }

      .btn-one,
      .btn-two {
      position: relative;
      height: 35px;
      width: 50%;
      border: 0;
      border-radius: 4px;
      color: white;
      background: Steelblue;
      display: inline-block;
      }

      <div class="form">
      <button class="btn-one">Button 1</button>
      <button class="btn-two">Button 2</button>
      </div>





      But the result is that the .btn-two ends up being on the new line or at the bottom of .btn-one.
      How can I make this full width without spaces while they're inlined? I hope someone will suggest an answer without the use of Bootstrap. Only in pure CSS.





      This question already has an answer here:




      • How do I remove the space between inline-block elements?

        35 answers







      .form {
      position: relative;
      width: 80%;
      background: #CCC;
      }

      .btn-one,
      .btn-two {
      position: relative;
      height: 35px;
      width: 50%;
      border: 0;
      border-radius: 4px;
      color: white;
      background: Steelblue;
      display: inline-block;
      }

      <div class="form">
      <button class="btn-one">Button 1</button>
      <button class="btn-two">Button 2</button>
      </div>





      .form {
      position: relative;
      width: 80%;
      background: #CCC;
      }

      .btn-one,
      .btn-two {
      position: relative;
      height: 35px;
      width: 50%;
      border: 0;
      border-radius: 4px;
      color: white;
      background: Steelblue;
      display: inline-block;
      }

      <div class="form">
      <button class="btn-one">Button 1</button>
      <button class="btn-two">Button 2</button>
      </div>






      html css






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 24 '18 at 8:48









      Temani Afif

      67.1k93776




      67.1k93776










      asked Nov 24 '18 at 7:35









      Domino WallaceDomino Wallace

      92




      92




      marked as duplicate by Temani Afif css
      Users with the  css badge can single-handedly close css questions as duplicates and reopen them as needed.

      StackExchange.ready(function() {
      if (StackExchange.options.isMobile) return;

      $('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
      var $hover = $(this).addClass('hover-bound'),
      $msg = $hover.siblings('.dupe-hammer-message');

      $hover.hover(
      function() {
      $hover.showInfoMessage('', {
      messageElement: $msg.clone().show(),
      transient: false,
      position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
      dismissable: false,
      relativeToBody: true
      });
      },
      function() {
      StackExchange.helpers.removeMessages();
      }
      );
      });
      });
      Nov 24 '18 at 8:45


      This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.






      marked as duplicate by Temani Afif css
      Users with the  css badge can single-handedly close css questions as duplicates and reopen them as needed.

      StackExchange.ready(function() {
      if (StackExchange.options.isMobile) return;

      $('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
      var $hover = $(this).addClass('hover-bound'),
      $msg = $hover.siblings('.dupe-hammer-message');

      $hover.hover(
      function() {
      $hover.showInfoMessage('', {
      messageElement: $msg.clone().show(),
      transient: false,
      position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
      dismissable: false,
      relativeToBody: true
      });
      },
      function() {
      StackExchange.helpers.removeMessages();
      }
      );
      });
      });
      Nov 24 '18 at 8:45


      This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.


























          3 Answers
          3






          active

          oldest

          votes


















          1














          Add float: right; to .btn-two:



          .btn-two {
          float: right;
          }


          See working example below:






          .form {
          position: relative;
          width: 80%;
          background: #CCC;
          }

          .btn-one, .btn-two {
          position: relative;
          height: 35px;
          width: 50%;
          border: 0;
          border-radius: 4px;
          color: white;
          background: Steelblue;
          /* display: inline-block; <-- No need for display */
          }

          .btn-two {
          float: right;
          }

          <div class="form">
          <button class="btn-one">Button 1</button>
          <button class="btn-two">Button 2</button>
          </div>








          share|improve this answer



















          • 1





            Thank you! It worked. I thought using float will make the element absolute or the parent element which is the form will not make a space for the element.

            – Domino Wallace
            Nov 24 '18 at 7:45











          • @DominoWallace I don't agree a lot with this float solution as it sounds like a hack, all what you need is to use the code as its and remove the white space between the inline-block elemen (check the duplicate)

            – Temani Afif
            Nov 24 '18 at 8:48











          • Yes, for a more solid and complete solution please see the duplicate marked by @TemaniAfif

            – Nick Parsons
            Nov 24 '18 at 12:39



















          4














          .form {
          position: relative;
          width: 80%;
          background: #CCC;
          display: flex;
          }
          .btn-one, .btn-two {
          position: relative;
          height: 35px; width: 50%;
          border: 0; border-radius: 4px;
          color: white;
          background: Steelblue;
          display: inline-block;
          }
          <div class="form">
          <button class="btn-one">Button 1</button>
          <button class="btn-two">Button 2</button>
          </div>





          share|improve this answer































            1














            You Can Use display: flex;



            HTML:



            <div class="form">
            <button class="btn-one">Button 1</button>
            <button class="btn-two">Button 2</button>
            </div>


            CSS:



            .form {
            position: relative;
            width: 80%;
            background: #CCC;
            display: flex;
            }
            .btn-one, .btn-two {
            position: relative;
            height: 35px; width: 50%;
            border: 0; border-radius: 4px;
            color: white;
            background: Steelblue;
            }


            Try This






            .form {
            position: relative;
            width: 80%;
            background: #CCC;
            display: flex;
            }
            .btn-one, .btn-two {
            position: relative;
            height: 35px; width: 50%;
            border: 0; border-radius: 4px;
            color: white;
            background: Steelblue;
            display: inline-block;
            }

            <div class="form">
            <button class="btn-one">Button 1</button>
            <button class="btn-two">Button 2</button>
            </div>








            share|improve this answer


























            • on basis of which strategy you are putting the 2nd property on the same line?

              – Adrian
              Nov 24 '18 at 7:45













            • I don't like Flex for its compatibility issues.

              – Domino Wallace
              Nov 24 '18 at 11:09


















            3 Answers
            3






            active

            oldest

            votes








            3 Answers
            3






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1














            Add float: right; to .btn-two:



            .btn-two {
            float: right;
            }


            See working example below:






            .form {
            position: relative;
            width: 80%;
            background: #CCC;
            }

            .btn-one, .btn-two {
            position: relative;
            height: 35px;
            width: 50%;
            border: 0;
            border-radius: 4px;
            color: white;
            background: Steelblue;
            /* display: inline-block; <-- No need for display */
            }

            .btn-two {
            float: right;
            }

            <div class="form">
            <button class="btn-one">Button 1</button>
            <button class="btn-two">Button 2</button>
            </div>








            share|improve this answer



















            • 1





              Thank you! It worked. I thought using float will make the element absolute or the parent element which is the form will not make a space for the element.

              – Domino Wallace
              Nov 24 '18 at 7:45











            • @DominoWallace I don't agree a lot with this float solution as it sounds like a hack, all what you need is to use the code as its and remove the white space between the inline-block elemen (check the duplicate)

              – Temani Afif
              Nov 24 '18 at 8:48











            • Yes, for a more solid and complete solution please see the duplicate marked by @TemaniAfif

              – Nick Parsons
              Nov 24 '18 at 12:39
















            1














            Add float: right; to .btn-two:



            .btn-two {
            float: right;
            }


            See working example below:






            .form {
            position: relative;
            width: 80%;
            background: #CCC;
            }

            .btn-one, .btn-two {
            position: relative;
            height: 35px;
            width: 50%;
            border: 0;
            border-radius: 4px;
            color: white;
            background: Steelblue;
            /* display: inline-block; <-- No need for display */
            }

            .btn-two {
            float: right;
            }

            <div class="form">
            <button class="btn-one">Button 1</button>
            <button class="btn-two">Button 2</button>
            </div>








            share|improve this answer



















            • 1





              Thank you! It worked. I thought using float will make the element absolute or the parent element which is the form will not make a space for the element.

              – Domino Wallace
              Nov 24 '18 at 7:45











            • @DominoWallace I don't agree a lot with this float solution as it sounds like a hack, all what you need is to use the code as its and remove the white space between the inline-block elemen (check the duplicate)

              – Temani Afif
              Nov 24 '18 at 8:48











            • Yes, for a more solid and complete solution please see the duplicate marked by @TemaniAfif

              – Nick Parsons
              Nov 24 '18 at 12:39














            1












            1








            1







            Add float: right; to .btn-two:



            .btn-two {
            float: right;
            }


            See working example below:






            .form {
            position: relative;
            width: 80%;
            background: #CCC;
            }

            .btn-one, .btn-two {
            position: relative;
            height: 35px;
            width: 50%;
            border: 0;
            border-radius: 4px;
            color: white;
            background: Steelblue;
            /* display: inline-block; <-- No need for display */
            }

            .btn-two {
            float: right;
            }

            <div class="form">
            <button class="btn-one">Button 1</button>
            <button class="btn-two">Button 2</button>
            </div>








            share|improve this answer













            Add float: right; to .btn-two:



            .btn-two {
            float: right;
            }


            See working example below:






            .form {
            position: relative;
            width: 80%;
            background: #CCC;
            }

            .btn-one, .btn-two {
            position: relative;
            height: 35px;
            width: 50%;
            border: 0;
            border-radius: 4px;
            color: white;
            background: Steelblue;
            /* display: inline-block; <-- No need for display */
            }

            .btn-two {
            float: right;
            }

            <div class="form">
            <button class="btn-one">Button 1</button>
            <button class="btn-two">Button 2</button>
            </div>








            .form {
            position: relative;
            width: 80%;
            background: #CCC;
            }

            .btn-one, .btn-two {
            position: relative;
            height: 35px;
            width: 50%;
            border: 0;
            border-radius: 4px;
            color: white;
            background: Steelblue;
            /* display: inline-block; <-- No need for display */
            }

            .btn-two {
            float: right;
            }

            <div class="form">
            <button class="btn-one">Button 1</button>
            <button class="btn-two">Button 2</button>
            </div>





            .form {
            position: relative;
            width: 80%;
            background: #CCC;
            }

            .btn-one, .btn-two {
            position: relative;
            height: 35px;
            width: 50%;
            border: 0;
            border-radius: 4px;
            color: white;
            background: Steelblue;
            /* display: inline-block; <-- No need for display */
            }

            .btn-two {
            float: right;
            }

            <div class="form">
            <button class="btn-one">Button 1</button>
            <button class="btn-two">Button 2</button>
            </div>






            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Nov 24 '18 at 7:39









            Nick ParsonsNick Parsons

            4,8972721




            4,8972721








            • 1





              Thank you! It worked. I thought using float will make the element absolute or the parent element which is the form will not make a space for the element.

              – Domino Wallace
              Nov 24 '18 at 7:45











            • @DominoWallace I don't agree a lot with this float solution as it sounds like a hack, all what you need is to use the code as its and remove the white space between the inline-block elemen (check the duplicate)

              – Temani Afif
              Nov 24 '18 at 8:48











            • Yes, for a more solid and complete solution please see the duplicate marked by @TemaniAfif

              – Nick Parsons
              Nov 24 '18 at 12:39














            • 1





              Thank you! It worked. I thought using float will make the element absolute or the parent element which is the form will not make a space for the element.

              – Domino Wallace
              Nov 24 '18 at 7:45











            • @DominoWallace I don't agree a lot with this float solution as it sounds like a hack, all what you need is to use the code as its and remove the white space between the inline-block elemen (check the duplicate)

              – Temani Afif
              Nov 24 '18 at 8:48











            • Yes, for a more solid and complete solution please see the duplicate marked by @TemaniAfif

              – Nick Parsons
              Nov 24 '18 at 12:39








            1




            1





            Thank you! It worked. I thought using float will make the element absolute or the parent element which is the form will not make a space for the element.

            – Domino Wallace
            Nov 24 '18 at 7:45





            Thank you! It worked. I thought using float will make the element absolute or the parent element which is the form will not make a space for the element.

            – Domino Wallace
            Nov 24 '18 at 7:45













            @DominoWallace I don't agree a lot with this float solution as it sounds like a hack, all what you need is to use the code as its and remove the white space between the inline-block elemen (check the duplicate)

            – Temani Afif
            Nov 24 '18 at 8:48





            @DominoWallace I don't agree a lot with this float solution as it sounds like a hack, all what you need is to use the code as its and remove the white space between the inline-block elemen (check the duplicate)

            – Temani Afif
            Nov 24 '18 at 8:48













            Yes, for a more solid and complete solution please see the duplicate marked by @TemaniAfif

            – Nick Parsons
            Nov 24 '18 at 12:39





            Yes, for a more solid and complete solution please see the duplicate marked by @TemaniAfif

            – Nick Parsons
            Nov 24 '18 at 12:39













            4














            .form {
            position: relative;
            width: 80%;
            background: #CCC;
            display: flex;
            }
            .btn-one, .btn-two {
            position: relative;
            height: 35px; width: 50%;
            border: 0; border-radius: 4px;
            color: white;
            background: Steelblue;
            display: inline-block;
            }
            <div class="form">
            <button class="btn-one">Button 1</button>
            <button class="btn-two">Button 2</button>
            </div>





            share|improve this answer




























              4














              .form {
              position: relative;
              width: 80%;
              background: #CCC;
              display: flex;
              }
              .btn-one, .btn-two {
              position: relative;
              height: 35px; width: 50%;
              border: 0; border-radius: 4px;
              color: white;
              background: Steelblue;
              display: inline-block;
              }
              <div class="form">
              <button class="btn-one">Button 1</button>
              <button class="btn-two">Button 2</button>
              </div>





              share|improve this answer


























                4












                4








                4







                .form {
                position: relative;
                width: 80%;
                background: #CCC;
                display: flex;
                }
                .btn-one, .btn-two {
                position: relative;
                height: 35px; width: 50%;
                border: 0; border-radius: 4px;
                color: white;
                background: Steelblue;
                display: inline-block;
                }
                <div class="form">
                <button class="btn-one">Button 1</button>
                <button class="btn-two">Button 2</button>
                </div>





                share|improve this answer













                .form {
                position: relative;
                width: 80%;
                background: #CCC;
                display: flex;
                }
                .btn-one, .btn-two {
                position: relative;
                height: 35px; width: 50%;
                border: 0; border-radius: 4px;
                color: white;
                background: Steelblue;
                display: inline-block;
                }
                <div class="form">
                <button class="btn-one">Button 1</button>
                <button class="btn-two">Button 2</button>
                </div>






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 24 '18 at 7:47









                Riyal SavajRiyal Savaj

                813




                813























                    1














                    You Can Use display: flex;



                    HTML:



                    <div class="form">
                    <button class="btn-one">Button 1</button>
                    <button class="btn-two">Button 2</button>
                    </div>


                    CSS:



                    .form {
                    position: relative;
                    width: 80%;
                    background: #CCC;
                    display: flex;
                    }
                    .btn-one, .btn-two {
                    position: relative;
                    height: 35px; width: 50%;
                    border: 0; border-radius: 4px;
                    color: white;
                    background: Steelblue;
                    }


                    Try This






                    .form {
                    position: relative;
                    width: 80%;
                    background: #CCC;
                    display: flex;
                    }
                    .btn-one, .btn-two {
                    position: relative;
                    height: 35px; width: 50%;
                    border: 0; border-radius: 4px;
                    color: white;
                    background: Steelblue;
                    display: inline-block;
                    }

                    <div class="form">
                    <button class="btn-one">Button 1</button>
                    <button class="btn-two">Button 2</button>
                    </div>








                    share|improve this answer


























                    • on basis of which strategy you are putting the 2nd property on the same line?

                      – Adrian
                      Nov 24 '18 at 7:45













                    • I don't like Flex for its compatibility issues.

                      – Domino Wallace
                      Nov 24 '18 at 11:09
















                    1














                    You Can Use display: flex;



                    HTML:



                    <div class="form">
                    <button class="btn-one">Button 1</button>
                    <button class="btn-two">Button 2</button>
                    </div>


                    CSS:



                    .form {
                    position: relative;
                    width: 80%;
                    background: #CCC;
                    display: flex;
                    }
                    .btn-one, .btn-two {
                    position: relative;
                    height: 35px; width: 50%;
                    border: 0; border-radius: 4px;
                    color: white;
                    background: Steelblue;
                    }


                    Try This






                    .form {
                    position: relative;
                    width: 80%;
                    background: #CCC;
                    display: flex;
                    }
                    .btn-one, .btn-two {
                    position: relative;
                    height: 35px; width: 50%;
                    border: 0; border-radius: 4px;
                    color: white;
                    background: Steelblue;
                    display: inline-block;
                    }

                    <div class="form">
                    <button class="btn-one">Button 1</button>
                    <button class="btn-two">Button 2</button>
                    </div>








                    share|improve this answer


























                    • on basis of which strategy you are putting the 2nd property on the same line?

                      – Adrian
                      Nov 24 '18 at 7:45













                    • I don't like Flex for its compatibility issues.

                      – Domino Wallace
                      Nov 24 '18 at 11:09














                    1












                    1








                    1







                    You Can Use display: flex;



                    HTML:



                    <div class="form">
                    <button class="btn-one">Button 1</button>
                    <button class="btn-two">Button 2</button>
                    </div>


                    CSS:



                    .form {
                    position: relative;
                    width: 80%;
                    background: #CCC;
                    display: flex;
                    }
                    .btn-one, .btn-two {
                    position: relative;
                    height: 35px; width: 50%;
                    border: 0; border-radius: 4px;
                    color: white;
                    background: Steelblue;
                    }


                    Try This






                    .form {
                    position: relative;
                    width: 80%;
                    background: #CCC;
                    display: flex;
                    }
                    .btn-one, .btn-two {
                    position: relative;
                    height: 35px; width: 50%;
                    border: 0; border-radius: 4px;
                    color: white;
                    background: Steelblue;
                    display: inline-block;
                    }

                    <div class="form">
                    <button class="btn-one">Button 1</button>
                    <button class="btn-two">Button 2</button>
                    </div>








                    share|improve this answer















                    You Can Use display: flex;



                    HTML:



                    <div class="form">
                    <button class="btn-one">Button 1</button>
                    <button class="btn-two">Button 2</button>
                    </div>


                    CSS:



                    .form {
                    position: relative;
                    width: 80%;
                    background: #CCC;
                    display: flex;
                    }
                    .btn-one, .btn-two {
                    position: relative;
                    height: 35px; width: 50%;
                    border: 0; border-radius: 4px;
                    color: white;
                    background: Steelblue;
                    }


                    Try This






                    .form {
                    position: relative;
                    width: 80%;
                    background: #CCC;
                    display: flex;
                    }
                    .btn-one, .btn-two {
                    position: relative;
                    height: 35px; width: 50%;
                    border: 0; border-radius: 4px;
                    color: white;
                    background: Steelblue;
                    display: inline-block;
                    }

                    <div class="form">
                    <button class="btn-one">Button 1</button>
                    <button class="btn-two">Button 2</button>
                    </div>








                    .form {
                    position: relative;
                    width: 80%;
                    background: #CCC;
                    display: flex;
                    }
                    .btn-one, .btn-two {
                    position: relative;
                    height: 35px; width: 50%;
                    border: 0; border-radius: 4px;
                    color: white;
                    background: Steelblue;
                    display: inline-block;
                    }

                    <div class="form">
                    <button class="btn-one">Button 1</button>
                    <button class="btn-two">Button 2</button>
                    </div>





                    .form {
                    position: relative;
                    width: 80%;
                    background: #CCC;
                    display: flex;
                    }
                    .btn-one, .btn-two {
                    position: relative;
                    height: 35px; width: 50%;
                    border: 0; border-radius: 4px;
                    color: white;
                    background: Steelblue;
                    display: inline-block;
                    }

                    <div class="form">
                    <button class="btn-one">Button 1</button>
                    <button class="btn-two">Button 2</button>
                    </div>






                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited Nov 24 '18 at 7:45

























                    answered Nov 24 '18 at 7:44









                    zubair khanzadazubair khanzada

                    6472513




                    6472513













                    • on basis of which strategy you are putting the 2nd property on the same line?

                      – Adrian
                      Nov 24 '18 at 7:45













                    • I don't like Flex for its compatibility issues.

                      – Domino Wallace
                      Nov 24 '18 at 11:09



















                    • on basis of which strategy you are putting the 2nd property on the same line?

                      – Adrian
                      Nov 24 '18 at 7:45













                    • I don't like Flex for its compatibility issues.

                      – Domino Wallace
                      Nov 24 '18 at 11:09

















                    on basis of which strategy you are putting the 2nd property on the same line?

                    – Adrian
                    Nov 24 '18 at 7:45







                    on basis of which strategy you are putting the 2nd property on the same line?

                    – Adrian
                    Nov 24 '18 at 7:45















                    I don't like Flex for its compatibility issues.

                    – Domino Wallace
                    Nov 24 '18 at 11:09





                    I don't like Flex for its compatibility issues.

                    – Domino Wallace
                    Nov 24 '18 at 11:09



                    Popular posts from this blog

                    Contact image not getting when fetch all contact list from iPhone by CNContact

                    count number of partitions of a set with n elements into k subsets

                    A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks