rocket

css flexbox properties tutorial

  • Web html, css, javascript, php, python, sql, jquery, xml, ajax, bootstrap.
  • Online web design, along with everything you need for a complete website.

The css flexbox properties tutorial is shorthand for flex-grow, flex-shrink, and flex-basis. It only works on the flex-items, so if the container's item is not a flex-item, the flex property will not affect the corresponding item.

            16

top

css Flexbox Elements

1

2

3


<style>
.flex-code {
    display: -webkit-flex;
    display: flex;
    background-color: #960018;
    text-align: center;
}
.flex-item {
    background-color: #fff;
    width: 100px;
    margin: 10px;
color:#000;
}
</style>
<div class="flex-code">
  <div class="flex-item"><p>1</p></div>
  <div class="flex-item"><p>2</p></div>
  <div class="flex-item"><p>3</p></div>  
</div>

css Child Elements (Items)

4

5

6

7


<style>
 .flex-code1 {
    display: -webkit-flex;
    display: flex;
    background-color: #252321;
    text-align: center;
    color: #fff;
}

.flex-item1 {
    background-color: #960018;
    width: 100px;
    margin: 10px;
}
</style>
<div class="flex-code1">
    <div class="flex-item1"><p>4</p></div>
    <div class="flex-item1"><p>5</p></div>
    <div class="flex-item1"><p>6</p></div>  
    <div class="flex-item1"><p>7</p></div>
</div>

css The flex-grow Property

8

9

10


 <style>
 .flex-code1 {
    display: -webkit-flex;
    display: flex;
    background-color: #252321;
    text-align: center;
    color: #fff;
}

.flex-item1 {
    background-color: #960018;
    width: 100px;
    margin: 10px;
}
</style>
<div class="flex-code1">
    <div style="flex-grow:1" class="flex-item1"><p>8</p></div>
    <div style="flex-grow:1" class="flex-item1"><p>9</p></div>
    <div style="flex-grow:8" class="flex-item1"><p>10</p></div>  
</div>

css The flex-shrink Property

11

12

13

14

15

16

17

18

19

20


 <style>
 .flex-code1 {
    display: -webkit-flex;
    display: flex;
    background-color: #252321;
    text-align: center;
    color: #fff;
}

.flex-item1 {
    background-color: #960018;
    width: 100px;
    margin: 10px;
}
</style>
  <div class="flex-code1" style="max-width:800px;">
    <div style="flex-shrink:1" class="flex-item1"><p>11</p></div>
    <div style="flex-shrink:1" class="flex-item1"><p>12</p></div>
    <div style="flex-shrink:0" class="flex-item1"><p>13</p></div>  
    <div style="flex-shrink:1" class="flex-item1"><p>14</p></div>
    <div style="flex-shrink:1" class="flex-item1"><p>15</p></div>
    <div style="flex-shrink:1" class="flex-item1"><p>16</p></div>  
    <div style="flex-shrink:1" class="flex-item1"><p>17</p></div>
    <div style="flex-shrink:1" class="flex-item1"><p>18</p></div>
    <div style="flex-shrink:1" class="flex-item1"><p>19</p></div>
    <div style="flex-shrink:1" class="flex-item1"><p>20</p></div>
</div>

Skills assessment. Although the years working on a skill can provide an indication of maturity and expertise gained, this alone is not enough. Different people have different levels of gaining knowledge and expertise and there are people that have a natural inclination to some specific skills.

HTML5
100%
CSS3
100%
JAVASCRIPT
100%
PHP
100%
JQUERY
100%
WORDPRESS
100%
SQL
100%
XML
100%
DESIGN & DEVELOPMENT
⭐⭐⭐⭐⭐  Best Seller
100%
PHOTO MAKER
100%
PHOTOSHOP
100%
SEO
100%