How to Reduce Space in DIV using Using Flex

Bob Stewart

In this Fiddle, how can I reduce the space between the individual content(the 1,2,3,4) and its border. I'm kinda new to Flexbox, and I don't know if there is an easy fix to this.

Here is what I mean(more specifically)

https://ibb.co/z73dJ4m

versus

https://ibb.co/pzwhVB5

Thanks

JS Fiddle: https://jsfiddle.net/Ragingfury/0nrq94jt/2/

.a{
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-flow:row wrap;
  text-align:center;
}
.b{
flex:40%;
margin:20px;
border:1px solid blue;
}
<div class="a">

  <div class="b">
    1
  </div>
  <div class="b">
    2
  </div>
  <div class="b">
    3
  </div>
  <div class="b">
    4
  </div>

</div>

Always Helping

You can use space-evenly and setting some width on your .b instead of flex:40%

I hope that's what you wanted.

Here is working fiddle: https://jsfiddle.net/9xd2hna5/

.first,
.second {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-flow: row wrap;
  text-align: center;
}

.b {
  width: 15em;
  margin: 1em;
  border: 1px solid blue;
}
<div class="a">

  <div class="first">
    <div class="b">
      1
    </div>
    <div class="b">
      2
    </div>
  </div>

  <div class="second">

    <div class="b">
      3
    </div>
    <div class="b">
      4
    </div>
  </div>

</div>

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

How to get 100% height from the parent DIV to child DIV using CSS flex

分類Dev

How to center vertically an image using flex box?

分類Dev

In Python how to access elements of tuples using reduce()?

分類Dev

Implement map using reduce

分類Dev

Using reduce method for piping

分類Dev

How to append the div before the div using jquery?

分類Dev

How to reduce space between label and choices in selectinput?

分類Dev

how to reduce runtime of google app script that using setValues() and copyto() in for loop

分類Dev

How to reduce spacing between plot and xticks using matplotlib?

分類Dev

How to reduce title to one line in MS Word using VBA

分類Dev

Use flex column with wrap in a div taking up all remaining space

分類Dev

How to extend partition with free space that is before it using gparted?

分類Dev

How to delete space inside the string under condition, using SQL?

分類Dev

How to remove text between a string and a space using SED

分類Dev

How can I make no line space using regex?

分類Dev

How to show middle of image in div using css?

分類Dev

How to convert a 'div' into a dropdown using CSS/Jquery

分類Dev

Java split on space using regexp?

分類Dev

How to have a flex container take the space of its elements?

分類Dev

How to remove/reduce space betwen text and checkbox of CheckboxListTile in Flutter?

分類Dev

Using flex-wrap on containers with width: 100%

分類Dev

calculate the count of object using reduce or filter in javascript

分類Dev

ramda js concat the value using reduce

分類Dev

JavaScript: Sentence variations using the reduce function

分類Dev

Reduce whitespace around regression tables using huxtable()

分類Dev

Using map\reduce with nested elements in javascript

分類Dev

Python: Is it possible to do the same using reduce()?

分類Dev

Implementing Reservoir Sampling using Map Reduce

分類Dev

Using the reduce method to eliminate any duplicated numbers

Related 関連記事

  1. 1

    How to get 100% height from the parent DIV to child DIV using CSS flex

  2. 2

    How to center vertically an image using flex box?

  3. 3

    In Python how to access elements of tuples using reduce()?

  4. 4

    Implement map using reduce

  5. 5

    Using reduce method for piping

  6. 6

    How to append the div before the div using jquery?

  7. 7

    How to reduce space between label and choices in selectinput?

  8. 8

    how to reduce runtime of google app script that using setValues() and copyto() in for loop

  9. 9

    How to reduce spacing between plot and xticks using matplotlib?

  10. 10

    How to reduce title to one line in MS Word using VBA

  11. 11

    Use flex column with wrap in a div taking up all remaining space

  12. 12

    How to extend partition with free space that is before it using gparted?

  13. 13

    How to delete space inside the string under condition, using SQL?

  14. 14

    How to remove text between a string and a space using SED

  15. 15

    How can I make no line space using regex?

  16. 16

    How to show middle of image in div using css?

  17. 17

    How to convert a 'div' into a dropdown using CSS/Jquery

  18. 18

    Java split on space using regexp?

  19. 19

    How to have a flex container take the space of its elements?

  20. 20

    How to remove/reduce space betwen text and checkbox of CheckboxListTile in Flutter?

  21. 21

    Using flex-wrap on containers with width: 100%

  22. 22

    calculate the count of object using reduce or filter in javascript

  23. 23

    ramda js concat the value using reduce

  24. 24

    JavaScript: Sentence variations using the reduce function

  25. 25

    Reduce whitespace around regression tables using huxtable()

  26. 26

    Using map\reduce with nested elements in javascript

  27. 27

    Python: Is it possible to do the same using reduce()?

  28. 28

    Implementing Reservoir Sampling using Map Reduce

  29. 29

    Using the reduce method to eliminate any duplicated numbers

ホットタグ

アーカイブ