{"id":21005,"date":"2020-08-07T23:06:14","date_gmt":"2020-08-08T06:06:14","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=21005"},"modified":"2020-12-29T10:58:53","modified_gmt":"2020-12-29T18:58:53","slug":"bootstrap-card-component","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/","title":{"rendered":"Bootstrap Card Component"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Bootstrap Cards<\/h2>\n\n\n\n<p>The Bootstrap card is one of its most popular components, and with good reason. They serve as a very flexible media container, and have some nice preset styling and formatting.<\/p>\n\n\n\n<p>Card content can be anything from text, images, links, buttons, lists, and can also have a header and footer.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Bootstrap Card Basics<\/h2>\n\n\n\n<p>Bootstrap cards are made with flexbox, and expand to the width of their containing element by default. If we want to specify a different width, we can either use Bootstrap\u2019s width utility class on the card element itself, or we can wrap the card in a containing element, and size it with Bootstrap\u2019s column classes.<br><\/p>\n\n\n\n<p>Let\u2019s take a look at a few examples:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;div class=&quot;container-fluid bg-light&quot;&gt;\n      &lt;div class=&quot;card p-4 m-4&quot;&gt;card 1&lt;\/div&gt;\n      &lt;div class=&quot;card p-4 m-4&quot;&gt;card 2&lt;\/div&gt;\n      &lt;div class=&quot;card p-4 m-4&quot;&gt;card 3&lt;\/div&gt;\n \n      &lt;div class=&quot;card-group m-4&quot;&gt;\n        &lt;div class=&quot;card p-4&quot;&gt;card 4&lt;\/div&gt;\n        &lt;div class=&quot;card p-4&quot;&gt;card 5&lt;\/div&gt;\n        &lt;div class=&quot;card p-4&quot;&gt;card 6&lt;\/div&gt;\n      &lt;\/div&gt;\n \n      &lt;div class=&quot;card-deck m-4&quot;&gt;\n        &lt;div class=&quot;card p-4 m-4&quot;&gt;card 7&lt;\/div&gt;\n        &lt;div class=&quot;card p-4 m-4&quot;&gt;card 8&lt;\/div&gt;\n        &lt;div class=&quot;card p-4 m-4&quot;&gt;card 9&lt;\/div&gt;\n      &lt;\/div&gt;\n    &lt;\/div&gt;<\/pre><\/div>\n\n\n\n<p>Bootstrap\u2019s rule of thumb is to wrap everything that\u2019s inside the &lt;body&gt; in a CONTAINER element, which makes everything inside of it responsive.&nbsp;<br><\/p>\n\n\n\n<p>That means that it will shift size and layouts according to the current screen size.<br><\/p>\n\n\n\n<p>In our example, we used CONTAINER-FLUID, which just makes the element full-width, as opposed to just CONTAINER, which adds horizontal margin and centers it on the page.<br><\/p>\n\n\n\n<p>Next, we have our first set of three cards. They have no parent element other than the container so they have the default card behavior and are arranged top to bottom as we see in the screenshot:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh5.googleusercontent.com\/FLyWWwwki5X_pkLJylQpcFr7ShmuHh9rBHjqTDL1I9467iGZv30jcHfQki9kvt-fN9vpAv-oahKI80FU_S0fhDfysomfvR0Jnmp_e2XmnJ-Z0M84XTbL6jGQthdTp1zZRvZulJ56\" alt=\"\"\/><\/figure>\n\n\n\n<p>The p-4 and m-4 you see in the code snippet represent a padding on all sides of 1.5 rem, and a margin on all sides of 1.5 rem respectively.<\/p>\n\n\n\n<h5 class=\"wp-block-heading\">Bootstrap sizing utility values:<\/h5>\n\n\n\n<p><br>0 = 0 rem;<\/p>\n\n\n\n<p>1 = 0.25 rem;<\/p>\n\n\n\n<p>2 = 0.5 rem;<\/p>\n\n\n\n<p>3 = 1 rem;<\/p>\n\n\n\n<p>4 = 1.5 rem;<\/p>\n\n\n\n<p>5 = 3 rem;<br><\/p>\n\n\n\n<p>Then we have cards 4, 5, and 6, which are wrapped in a &lt;div&gt; with the CARD-GROUP class. They behave exactly like the BTN-GROUP class. They are joined together in a horizontal flexbox layout, and a rounded border is added to the whole group.<br><\/p>\n\n\n\n<p>Lastly, cards 7, 8, and 9 are wrapped in a &lt;div&gt; with the CARD-DECK class, which joins them in a horizontal flexbox, but leaves them as separate elements visually.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Manually sizing cards<\/h2>\n\n\n\n<p>Before we do some manually sized cards, let\u2019s learn a bit about Bootstrap\u2019s layout and breakpoint system.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Bootstrap Columns<\/h3>\n\n\n\n<p>Bootstrap divides the page in 12 columns for easy layout development.<\/p>\n\n\n\n<p>Here\u2019s a quick demo to visualize it:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;div class=&quot;row&quot;&gt;\n        &lt;div class=&quot;col border p-5&quot;&gt;column 1&lt;\/div&gt;\n        &lt;div class=&quot;col border p-5&quot;&gt;column 2&lt;\/div&gt;\n        &lt;div class=&quot;col border p-5&quot;&gt;column 3&lt;\/div&gt;\n        &lt;div class=&quot;col border p-5&quot;&gt;column 4&lt;\/div&gt;\n        &lt;div class=&quot;col border p-5&quot;&gt;column 5&lt;\/div&gt;\n        &lt;div class=&quot;col border p-5&quot;&gt;column 6&lt;\/div&gt;\n        &lt;div class=&quot;col border p-5&quot;&gt;column 7&lt;\/div&gt;\n        &lt;div class=&quot;col border p-5&quot;&gt;column 8&lt;\/div&gt;\n        &lt;div class=&quot;col border p-5&quot;&gt;column 9&lt;\/div&gt;\n        &lt;div class=&quot;col border p-5&quot;&gt;column 10&lt;\/div&gt;\n        &lt;div class=&quot;col border p-5&quot;&gt;column 11&lt;\/div&gt;\n        &lt;div class=&quot;col border p-5&quot;&gt;column 12&lt;\/div&gt;\n      &lt;\/div&gt;<\/pre><\/div>\n\n\n\n<p>First we have a wrapper for the columns called a ROW, which is just a flexbox container for them. We declare an element\u2019s sizing by writing COL-SCREEN SIZE BREAKPOINT-NUMBER OF COLUMNS TO OCCUPY.&nbsp;<br><\/p>\n\n\n\n<p>In our above example, we didn\u2019t provide the breakpoint as we want this sizing no matter the size of the screen, and no number of columns because omitting it defaults to COL-1 so we get our natural 12 columns. Here\u2019s what it looks like:<br><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh6.googleusercontent.com\/nrEGI3sEJ14T3qzNbRfP9h0DL0Gkk9yT3TQ93S_pdX9gPRLDhLeFQrJk_NSPIq9zsYH35L7CN-aRvCgfXbgO-bXVV-m_d1OmSg0LzRSC1PJBc40lT280VkSAN_fL-JDIS6UNBXbD\" alt=\"\"\/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Bootstrap Breakpoints:<\/h3>\n\n\n\n<p>Bootstrap is a mobile-first framework, meaning that when developing with Bootstrap you prioritize mobile layouts and work your way upwards. All of it\u2019s classes affect the element from the breakpoint provided and upwards.<br><\/p>\n\n\n\n<p>Extra small is the default so omitting the break point completely, like P-4 for example, is the same as writing P-XS-4 which would apply it on XS screen size and all of the larger ones.&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh5.googleusercontent.com\/Iee_0s5s0vTJl8uoG4CpasvJS3Q9tnIz0pb3tEY_q3gUpNTT0XMOyY8z8ICLMsbs3KklvRABzv5JOTu1wfP6jp8v8Fja_xR_ANF74liHmVQcwCoBWCmenTNOfLq_kfBytQQGVQjJ\" alt=\"\"\/><\/figure>\n\n\n\n<p>In other words, if you want a rule that\u2019s effective on all screens just omit the breakpoint.<br><\/p>\n\n\n\n<p>If we wanted to reduce the padding from the example to 0.5 rem from the medium screen size and above, we\u2019d add the P-MD-2 class on the same element.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh4.googleusercontent.com\/grF4m9ATApDZsW7UcT5Y18-6NjC1WF9DWYQ3ts1PG40SUup3ejahD9KL6fvy9m5In5S8gLCTjexYqidOnC58V6cS_NaY1aIlUyAOEA5weqiWWtNcyNI6Iumkd3HkMxHt3-wKvXcK\" alt=\"\"\/><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">Breakpoint pixel values:<\/h4>\n\n\n\n<ul class=\"wp-block-list\"><li>xs &#8211; screen size below 576 pixels. This is the default.<\/li><li>sm &#8211; screen size from 576 pixels and above.<\/li><li>md &#8211; screen size from 768 pixels and above.<\/li><li>lg &#8211; screen size from 992 pixels and above.<\/li><li>xl &#8211; screen size from 1200 pixels and above.<\/li><\/ul>\n\n\n\n<p>Now let\u2019s use this to make our layout change depending on the screen size:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;div class=&quot;row&quot;&gt;\n        &lt;div class=&quot;col-5 col-md-7&quot;&gt;\n          &lt;div class=&quot;card p-4&quot;&gt;left column card&lt;\/div&gt;\n          &lt;div class=&quot;card p-4&quot;&gt;left column card&lt;\/div&gt;\n          &lt;div class=&quot;card p-4&quot;&gt;left column card&lt;\/div&gt;\n          &lt;div class=&quot;card p-4&quot;&gt;left column card&lt;\/div&gt;\n        &lt;\/div&gt;\n        &lt;div class=&quot;col-7 col-md-5&quot;&gt;\n          &lt;div class=&quot;card p-4&quot;&gt;right column card&lt;\/div&gt;\n          &lt;div class=&quot;card p-4&quot;&gt;right column card&lt;\/div&gt;\n          &lt;div class=&quot;card p-4&quot;&gt;right column card&lt;\/div&gt;\n          &lt;div class=&quot;card p-4&quot;&gt;right column card&lt;\/div&gt;\n        &lt;\/div&gt;\n      &lt;\/div&gt;<\/pre><\/div>\n\n\n\n<p>Again, we have our ROW wrapper, and then a &lt;div&gt; set to COL-5 COL-MD-7, which means it will occupy 5 columns from the smallest screen size and upwards, but as soon as it reaches the medium screen size, it will change to 7 columns. After it we have a &lt;div&gt; with the reverse, COL-7 COL-MD-5, they\u2019re both filled with a few cards. I grabbed the screen size in the screenshot so you can see how it changes:<br><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh4.googleusercontent.com\/xFW2AYMm6oO_zElcrqaOZwM5Hz-LuSIDduxbhIux6LB7wEO3wOEehB1KCUiT85l_mLApVnYYGkzhp3l8xYNuoD6ICP4SgS9Q6UFMWcymw1-mOuU0OPEwaI6EheluJzAi_idgQ9Tn\" alt=\"\"\/><\/figure>\n\n\n\n<p>767 pixels width, our left &lt;div&gt; is 5 columns wide and the right is 7.<\/p>\n\n\n\n<p>We go up 1 pixel to 768 and they change to the opposite:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh6.googleusercontent.com\/bJbPeSVxZArWmjz9voBMRHbnWmWM0VIIxjlTYo4Z9P2ws-Nqpcq7lZkZcBlq86bfoT7HzwWdUo_NwVl2nEqvccZkpSF592M5nxcuAzTfbqN2LQ5usjiLpuWlkzOsdaE_UpudOo79\" alt=\"\"\/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Card Subcomponents<\/h2>\n\n\n\n<p>Let\u2019s now utilize the full power of cards by trying out all of their subcomponents.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Card with Header and Footer<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;div class=&quot;card&quot;&gt;\n            &lt;div class=&quot;card-header text-center p-4&quot;&gt;I'm a header&lt;\/div&gt;\n            &lt;div class=&quot;card-body&quot;&gt;\n              &lt;p class=&quot;card-text&quot;&gt;\n                first paragraph\n              &lt;\/p&gt;\n              &lt;p class=&quot;card-text&quot;&gt;\n                second paragraph\n              &lt;\/p&gt;\n              &lt;a href=&quot;#&quot; class=&quot;card-link&quot;&gt;Link 1&lt;\/a&gt;\n              &lt;a href=&quot;#&quot; class=&quot;card-link&quot;&gt;Link 2&lt;\/a&gt;\n              &lt;a href=&quot;#&quot; class=&quot;card-link&quot;&gt;Link 3&lt;\/a&gt;\n            &lt;\/div&gt;\n            &lt;div class=&quot;card-footer&quot;&gt;\n              Footer of a Bootstrap card\n            &lt;\/div&gt;\n          &lt;\/div&gt;<\/pre><\/div>\n\n\n\n<p>We created a card with a centered card header, which has a border and a light gray background, and a card body below it, which gives it some padding.&nbsp;<br><\/p>\n\n\n\n<p>In the body, we have a few paragraphs with CARD-TEXT for some alignment, and a few links with CARD-LINK, so they\u2019re colored blue and laid out next to each other.<br><\/p>\n\n\n\n<p>At the end, we made a card footer which has the same styling as the header, but we didn\u2019t center the text this time.<br><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh4.googleusercontent.com\/nU4fTqXUX28yw_iV-X6uPh0q6cin8B4Swe-hB3z31gL8uevg4dMvKhGcjNcuqm0-ehMZrx2TWUH3uazZmq_H6kyCd64KYPdqzdMi_ejrgOzK7I914GOFuuYTpHvIxRlHJDz3kWet\" alt=\"\"\/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Card With an Image Cap<\/h3>\n\n\n\n<p>This time, we\u2019ll add an image cap to the card, a title and subtitle to the card\u2019s body, and a list group with links as list items:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;div class=&quot;card&quot;&gt;\n            &lt;img\n              src=&quot;https:\/\/via.placeholder.com\/100&quot;\n              alt=&quot;&quot;\n              class=&quot;card-img-top&quot;\n            \/&gt;\n            &lt;div class=&quot;card-body&quot;&gt;\n              &lt;h3 class=&quot;card-title&quot;&gt;card title in the card's body&lt;\/h3&gt;\n              &lt;h4 class=&quot;card-subtitle mb-4&quot;&gt;card subtitle&lt;\/h4&gt;\n \n              &lt;p&gt;list group with links inside:&lt;\/p&gt;\n              &lt;ul class=&quot;list-group&quot;&gt;\n                &lt;li class=&quot;list-group-item&quot;&gt;\n                  &lt;a href=&quot;#&quot; class=&quot;card-link&quot;&gt;List link 1&lt;\/a&gt;\n                &lt;\/li&gt;\n                &lt;li class=&quot;list-group-item&quot;&gt;\n                  &lt;a href=&quot;#&quot; class=&quot;card-link&quot;&gt;List link 2&lt;\/a&gt;\n                &lt;\/li&gt;\n                &lt;li class=&quot;list-group-item&quot;&gt;\n                  &lt;a href=&quot;#&quot; class=&quot;card-link&quot;&gt;List link 3&lt;\/a&gt;\n                &lt;\/li&gt;\n              &lt;\/ul&gt;\n            &lt;\/div&gt;\n          &lt;\/div&gt;<\/pre><\/div>\n\n\n\n<p>I\u2019m using a very handy tool for the images conveniently called placeholder. The number at the end is the pixel width x height of the image, but that gets ignored here as the CARD-IMG-TOP stretches (or shrinks) the image into the full width of the card. The title and subtitle get some nice formatting, and we\u2019ve used one of Bootstrap\u2019s orientation utilities for padding and margin. The MB-4 you see on the subtitle stands for margin bottom.<br><\/p>\n\n\n\n<h5 class=\"wp-block-heading\">Bootstrap padding and margin orientation:<\/h5>\n\n\n\n<ul class=\"wp-block-list\"><li>pt\/mt &#8211; padding\/margin top<\/li><li>pb\/mb &#8211; padding\/margin bottom<\/li><li>pl\/ml &#8211; padding\/margin left<\/li><li>pr\/mr &#8211; padding\/margin right<\/li><li>py\/my &#8211; padding\/margin y axis (top and bottom)<\/li><li>px\/mx &#8211; padding\/margin x axis (left and right)<\/li><\/ul>\n\n\n\n<p>Then we have a list group which again encapsulates the list and it\u2019s individual elements with a light, rounded border. Here\u2019s our result:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh3.googleusercontent.com\/mtcRMv1AcSPQtKXdjXuK5sac65Ua5hl0D37y10JIIJ791EjxjpQ-_OQPkVVu-iaygQRkgP9bBL_Zb3FpFm3QhGlNtAKaxZT0jASgPGXEMi0QdLdo1L874I1o5WWyW9CU-B5JweIF\" alt=\"\"\/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Bottom Image Cap<\/h3>\n\n\n\n<p>There\u2019s no CARD-IMG-BOTTOM in bootstrap, but we can easily \u201cfake\u201d this by making a div at the bottom of the card and placing an &lt;img class=\u201dcard-img-top\u201d inside of it.<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;div class=&quot;card&quot;&gt;\n            &lt;div class=&quot;card-body&quot;&gt;\n              &lt;p class=&quot;card-text&quot;&gt;\n                Lorem, ipsum dolor sit amet consectetur adipisicing elit. Quas\n                unde corporis sed nam ad eius, pariatur, consectetur modi\n                asperiores dolorem id quaerat eos quod nesciunt repudiandae aut\n                temporibus rerum possimus.\n              &lt;\/p&gt;\n            &lt;\/div&gt;\n            &lt;img\n              src=&quot;https:\/\/via.placeholder.com\/100&quot;\n              alt=&quot;&quot;\n              class=&quot;card-img-top&quot;\n            \/&gt;\n          &lt;\/div&gt;<\/pre><\/div>\n\n\n\n<p>I also added the good old lorem ipsum for good measure.<br><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh6.googleusercontent.com\/t4hMk8GsrwTalo31PePZo5CnrMl3V6Y50RfwIJg0Jpfd36bpYYDTN8nqNkcfzlcH1rwnTtt5hy5okWTNZHPHnysPdOf8KGldPpRRGiYyGEzFOOgWcLcq3h2zQbeX9jU1qUcRkUzq\" alt=\"\"\/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Side Image Cap<\/h3>\n\n\n\n<p>We can also make it horizontal by adding a ROW wrapper inside of our card to lay it out horizontally, and then using COL to define the size of the image and the rest of the card:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;div class=&quot;card&quot;&gt;\n            &lt;div class=&quot;row&quot;&gt;\n              &lt;img\n                src=&quot;https:\/\/via.placeholder.com\/100&quot;\n                alt=&quot;&quot;\n                class=&quot;card-img-top col-6&quot;\n              \/&gt;\n              &lt;div class=&quot;card-body col-6&quot;&gt;\n                &lt;h3 class=&quot;card-title&quot;&gt;card title in the card's body&lt;\/h3&gt;\n                &lt;h4 class=&quot;card-subtitle mb-4&quot;&gt;card subtitle&lt;\/h4&gt;\n \n                &lt;p&gt;list group with links inside:&lt;\/p&gt;\n                &lt;ul class=&quot;list-group&quot;&gt;\n                  &lt;li class=&quot;list-group-item&quot;&gt;\n                    &lt;a href=&quot;#&quot; class=&quot;card-link&quot;&gt;List link 1&lt;\/a&gt;\n                  &lt;\/li&gt;\n                  &lt;li class=&quot;list-group-item&quot;&gt;\n                    &lt;a href=&quot;#&quot; class=&quot;card-link&quot;&gt;List link 2&lt;\/a&gt;\n                  &lt;\/li&gt;\n                  &lt;li class=&quot;list-group-item&quot;&gt;\n                    &lt;a href=&quot;#&quot; class=&quot;card-link&quot;&gt;List link 3&lt;\/a&gt;\n                  &lt;\/li&gt;\n                &lt;\/ul&gt;\n              &lt;\/div&gt;\n            &lt;\/div&gt;\n          &lt;\/div&gt;<\/pre><\/div>\n\n\n\n<p>We just wrapped all the contents of the card in a &lt;div class=\u201crow\u201d&gt;<\/p>\n\n\n\n<p>and added COL-6 to both the image and the card body to make the card 50-50.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh5.googleusercontent.com\/ITVKMu6-xEdH30OV8cLRiVd5qnpejFPysLi99GN-R2eThipzGhGKTCNLpJ36an2XYkxsgFVDPGiR-Dw5t3iQIsETg3X3eeoCDqM9GBmhPAPwlcyn0js8F4Lpf4DPipcZ3iAvK-A3\" alt=\"\"\/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Card Image as a Background<\/h3>\n\n\n\n<p>We can also stretch an image over the whole card and have the text, lists, links etc, layed over it. We do it by simply giving the &lt;img&gt; a class of CARD-IMG and then placing everything else in a &lt;div&gt; with class CARD-IMG-OVERLAY. Inside of it, we configure the elements however we want.<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;div class=&quot;card&quot;&gt;\n            &lt;img\n              src=&quot;https:\/\/via.placeholder.com\/100&quot;\n              alt=&quot;&quot;\n              class=&quot;card-img&quot;\n            \/&gt;\n            &lt;div class=&quot;card-img-overlay&quot;&gt;\n              &lt;h4 class=&quot;card-title&quot;&gt;Overlay Title&lt;\/h4&gt;\n              &lt;p class=&quot;card-text&quot;&gt;\n                Image text overlay\n              &lt;\/p&gt;\n              &lt;p&gt;second paragraph&lt;\/p&gt;\n              &lt;p&gt;third paragraph&lt;\/p&gt;\n              &lt;p&gt;fourth paragraph&lt;\/p&gt;\n              &lt;div class=&quot;btn-group w-100&quot;&gt;\n                &lt;button class=&quot;btn btn-primary&quot;&gt;blue&lt;\/button&gt;\n                &lt;button class=&quot;btn btn-info&quot;&gt;teal&lt;\/button&gt;\n                &lt;button class=&quot;btn btn-danger&quot;&gt;red&lt;\/button&gt;\n                &lt;button class=&quot;btn btn-dark&quot;&gt;black&lt;\/button&gt;\n                &lt;button class=&quot;btn btn-success&quot;&gt;green&lt;\/button&gt;\n              &lt;\/div&gt;\n            &lt;\/div&gt;\n          &lt;\/div&gt;<\/pre><\/div>\n\n\n\n<p>Here we used the width utility for the first time. The W-100 on the BTN-GROUP.<br><\/p>\n\n\n\n<h5 class=\"wp-block-heading\">Bootstrap Width and Height Utilities:<\/h5>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh3.googleusercontent.com\/8MW1_N9yX5vvoM2yODj5uSJi7s28JdAFj9rx1yn83TRHNICQPAgp_FXhVsuHCEBSJAR6nPy3uv4g7oIS_58N3hLhqoq7h_XeUUZxcZ3N9rXGU0qyO4ylaTOJHyY9xPa2nM2Yd89-\" alt=\"\"\/><\/figure>\n\n\n\n<p>w\/h-25\/50\/75\/100 &#8211; width\/height 25%\/50%\/75%\/100%<br><\/p>\n\n\n\n<p>In our case it\u2019s 100% minus the same padding that CARD-BODY applies, that\u2019s applied here by CARD-IMG-OVERLAY.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Card Columns<\/h3>\n\n\n\n<p>There is also this option to lay out the cards in columns so that they go top to bottom first, and only when the column is filled they start on a new one.<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;div class=&quot;card-columns&quot;&gt;\n        &lt;div class=&quot;card&quot;&gt;\n          &lt;h3 class=&quot;card-title text-center p-2&quot;&gt;Title of card 1&lt;\/h3&gt;\n          &lt;div class=&quot;card-body&quot;&gt;\n            &lt;p class=&quot;card-text&quot;&gt;\n              Lorem ipsum dolor sit amet consectetur adipisicing elit. Aliquam,\n              rerum excepturi voluptate...\n            &lt;\/p&gt;\n          &lt;\/div&gt;\n        &lt;\/div&gt;\n        &lt;div class=&quot;card&quot;&gt;\n          &lt;h3 class=&quot;card-title text-center p-2&quot;&gt;Title of card 2&lt;\/h3&gt;\n          &lt;div class=&quot;card-body&quot;&gt;\n            &lt;p class=&quot;card-text&quot;&gt;\n              Lorem ipsum dolor sit amet consectetur adipisicing elit. Aliquam,\n              rerum excepturi voluptate...\n            &lt;\/p&gt;\n          &lt;\/div&gt;\n        &lt;\/div&gt;\n        &lt;div class=&quot;card&quot;&gt;\n          &lt;h3 class=&quot;card-title text-center p-2&quot;&gt;Title of card 3&lt;\/h3&gt;\n          &lt;div class=&quot;card-body&quot;&gt;\n            &lt;p class=&quot;card-text&quot;&gt;\n              Lorem ipsum dolor sit amet consectetur adipisicing elit. Aliquam,\n              rerum excepturi voluptate...\n            &lt;\/p&gt;\n          &lt;\/div&gt;\n        &lt;\/div&gt;\n        &lt;div class=&quot;card&quot;&gt;\n          &lt;h3 class=&quot;card-title text-center p-2&quot;&gt;Title of card 4&lt;\/h3&gt;\n          &lt;div class=&quot;card-body&quot;&gt;\n            &lt;p class=&quot;card-text&quot;&gt;\n              Lorem ipsum dolor sit amet consectetur adipisicing elit. Aliquam,\n              rerum excepturi voluptate...\n            &lt;\/p&gt;\n          &lt;\/div&gt;\n        &lt;\/div&gt;\n      &lt;\/div&gt;<\/pre><\/div>\n\n\n\n<p>We simply wrap all of our cards in a &lt;div class=\u201ccard-columns\u201d&gt; and we get the following:<br><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh5.googleusercontent.com\/4w7akdOOhcIwJQhpbqPSIbSoYBFpbFyWXYype0BDMlD_s71odxHDCnGJcZDeXacXQMJ5r9krkYz1vi2iDPDtIvf53X2JN1xbbPQAIOJjqGeuNSRB1wDYHKCUo2utXvLk9DEwjDzd\" alt=\"\"\/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Styling Bootstrap Cards<\/h3>\n\n\n\n<p>When it comes to styling bootstrap cards, we can change their background and text color, as well as the color and look of their borders.<br><\/p>\n\n\n\n<p>The styles can be applied to the whole card, it\u2019s separate subcomponents, or both. Here\u2019s a few styled cards to check out:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;div class=&quot;card bg-primary&quot;&gt;\n          &lt;div class=&quot;card-header&quot;&gt;&lt;h3&gt;Header 1&lt;\/h3&gt;&lt;\/div&gt;\n          &lt;div class=&quot;card-body&quot;&gt;\n            &lt;p&gt;Body 1&lt;\/p&gt;\n          &lt;\/div&gt;\n          &lt;div class=&quot;card-footer&quot;&gt;&lt;p&gt;Footer 1&lt;\/p&gt;&lt;\/div&gt;\n        &lt;\/div&gt;\n        &lt;div class=&quot;card bg-success text-white&quot;&gt;\n          &lt;div class=&quot;card-header&quot;&gt;&lt;h3&gt;Header 2&lt;\/h3&gt;&lt;\/div&gt;\n          &lt;div class=&quot;card-body&quot;&gt;\n            &lt;p&gt;Body 2&lt;\/p&gt;\n          &lt;\/div&gt;\n          &lt;div class=&quot;card-footer text-danger&quot;&gt;&lt;p&gt;Footer 2&lt;\/p&gt;&lt;\/div&gt;\n        &lt;\/div&gt;\n        &lt;div class=&quot;card bg-info text-dark border-danger&quot;&gt;\n          &lt;div class=&quot;card-header&quot;&gt;&lt;h3&gt;Header 3&lt;\/h3&gt;&lt;\/div&gt;\n          &lt;div class=&quot;card-body&quot;&gt;\n            &lt;p&gt;Body 3&lt;\/p&gt;\n          &lt;\/div&gt;\n          &lt;div class=&quot;card-footer&quot;&gt;&lt;p&gt;Footer 3&lt;\/p&gt;&lt;\/div&gt;\n        &lt;\/div&gt;\n        &lt;div class=&quot;card border-primary bg-dark text-white&quot;&gt;\n          &lt;div class=&quot;card-header border-success&quot;&gt;&lt;h3&gt;Header 4&lt;\/h3&gt;&lt;\/div&gt;\n          &lt;div class=&quot;card-body text-danger&quot;&gt;\n            &lt;p&gt;Body 4&lt;\/p&gt;\n          &lt;\/div&gt;\n          &lt;div class=&quot;card-footer bg-warning text-info&quot;&gt;&lt;p&gt;Footer 4&lt;\/p&gt;&lt;\/div&gt;\n        &lt;\/div&gt;<\/pre><\/div>\n\n\n\n<p>The first card has a blue background (BG-PRIMARY) on the card itself, styling the whole card.<br><\/p>\n\n\n\n<p>The second card has a green background (BG-SUCCESS) and white text (TEXT-WHITE) on the whole card, but red text (TEXT-DANGER) in the footer, overriding the parent element\u2019s TEXT-WHITE.<br><\/p>\n\n\n\n<p>The third card has a dark blue background (BG-INFO), black text (TEXT-DARK) and a red border (BORDER-DANGER).<br><\/p>\n\n\n\n<p>Finally, the fourth card has a blue border (BORDER-PRIMARY), a black background (BG-DARK), and white text (TEXT-WHITE) on the whole card.<br><\/p>\n\n\n\n<p>A green border (BORDER-SUCCESS) on the header, red text (TEXT-DANGER) in the body, and a yellow background (BG-WARNING) and dark blue text (TEXT-INFO) in the footer.<br><\/p>\n\n\n\n<p>Here\u2019s what our rainbow cards look like:&nbsp;<br><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh3.googleusercontent.com\/iMlYHhYxTR1qLhPdnxP2KM7zoXaGFKLLYGITtFem9lM9hf8SN2l_j7ut-v2nH3p8nSPyinENbeCMSupTzrNZi-q7kKFrV97CJ9EriQergAsCvWKnsf-NCFgOIoTd_h8c25JV2abj\" alt=\"\"\/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">To recap<\/h2>\n\n\n\n<p>The Bootstrap card is quite a powerful component with lots of options. They can be grouped into a card-deck for a separated, cohesive whole, or into a card-group to fuse them into a single entity. They can be spread out in a row, or in card-columns for a different look.<br><\/p>\n\n\n\n<p>They can host images, lists and links, all in various layouts.&nbsp;<br><\/p>\n\n\n\n<p>They can also have their own header and footer, all with preset styles and formatting, but open for us to customize.<br><\/p>\n\n\n\n<p>They are incredibly flexible, and probably one of the best examples of how much you can accomplish with Bootstrap, with so little previous setup, in so little time.<\/p>\n","protected":false},"excerpt":{"rendered":"Bootstrap Cards The Bootstrap card is one of its most popular components, and with good reason. They serve as a very flexible media container, and have some nice preset styling and formatting. Card content can be anything from text, images, links, buttons, lists, and can also have a header and footer. Bootstrap Card Basics Bootstrap&hellip;","protected":false},"author":85,"featured_media":21006,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17287],"tags":[],"class_list":{"0":"post-21005","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-css"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"CSS","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":null,"is_sponser_post":"","is_guest_post":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.0 (Yoast SEO v27.0) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Bootstrap Card Component | Career Karma<\/title>\n<meta name=\"description\" content=\"Learn all about the card component introduced in bootstrap 4 previously known as wells, thumbnails and panels. Learn bootstrap with Career Karma.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Bootstrap Card Component\" \/>\n<meta property=\"og:description\" content=\"Learn all about the card component introduced in bootstrap 4 previously known as wells, thumbnails and panels. Learn bootstrap with Career Karma.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/\" \/>\n<meta property=\"og:site_name\" content=\"Career Karma\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/careerkarmaapp\" \/>\n<meta property=\"article:published_time\" content=\"2020-08-08T06:06:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-12-29T18:58:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/aditya-chinchure-hyN9aU9Tm-c-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"680\" \/>\n\t<meta property=\"og:image:height\" content=\"1020\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Stefan Dili\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@career_karma\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Stefan Dili\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"16 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/\"},\"author\":{\"name\":\"Stefan Dili\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/38a169875c6272296a3430eecc389f8b\"},\"headline\":\"Bootstrap Card Component\",\"datePublished\":\"2020-08-08T06:06:14+00:00\",\"dateModified\":\"2020-12-29T18:58:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/\"},\"wordCount\":1601,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/aditya-chinchure-hyN9aU9Tm-c-unsplash.jpg\",\"articleSection\":[\"CSS\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/\",\"name\":\"Bootstrap Card Component | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/aditya-chinchure-hyN9aU9Tm-c-unsplash.jpg\",\"datePublished\":\"2020-08-08T06:06:14+00:00\",\"dateModified\":\"2020-12-29T18:58:53+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/38a169875c6272296a3430eecc389f8b\"},\"description\":\"Learn all about the card component introduced in bootstrap 4 previously known as wells, thumbnails and panels. Learn bootstrap with Career Karma.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/aditya-chinchure-hyN9aU9Tm-c-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/aditya-chinchure-hyN9aU9Tm-c-unsplash.jpg\",\"width\":680,\"height\":1020},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\/\/careerkarma.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"CSS\",\"item\":\"https:\/\/careerkarma.com\/blog\/css\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Bootstrap Card Component\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\",\"url\":\"https:\/\/careerkarma.com\/blog\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/careerkarma.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/38a169875c6272296a3430eecc389f8b\",\"name\":\"Stefan Dili\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/profilna-1-150x150.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/profilna-1-150x150.jpg\",\"caption\":\"Stefan Dili\"},\"url\":\"https:\/\/careerkarma.com\/blog\/author\/stefan-dili\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Bootstrap Card Component | Career Karma","description":"Learn all about the card component introduced in bootstrap 4 previously known as wells, thumbnails and panels. Learn bootstrap with Career Karma.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/","og_locale":"en_US","og_type":"article","og_title":"Bootstrap Card Component","og_description":"Learn all about the card component introduced in bootstrap 4 previously known as wells, thumbnails and panels. Learn bootstrap with Career Karma.","og_url":"https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-08-08T06:06:14+00:00","article_modified_time":"2020-12-29T18:58:53+00:00","og_image":[{"width":680,"height":1020,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/aditya-chinchure-hyN9aU9Tm-c-unsplash.jpg","type":"image\/jpeg"}],"author":"Stefan Dili","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"Stefan Dili","Est. reading time":"16 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/"},"author":{"name":"Stefan Dili","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/38a169875c6272296a3430eecc389f8b"},"headline":"Bootstrap Card Component","datePublished":"2020-08-08T06:06:14+00:00","dateModified":"2020-12-29T18:58:53+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/"},"wordCount":1601,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/aditya-chinchure-hyN9aU9Tm-c-unsplash.jpg","articleSection":["CSS"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/","url":"https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/","name":"Bootstrap Card Component | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/aditya-chinchure-hyN9aU9Tm-c-unsplash.jpg","datePublished":"2020-08-08T06:06:14+00:00","dateModified":"2020-12-29T18:58:53+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/38a169875c6272296a3430eecc389f8b"},"description":"Learn all about the card component introduced in bootstrap 4 previously known as wells, thumbnails and panels. Learn bootstrap with Career Karma.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/aditya-chinchure-hyN9aU9Tm-c-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/aditya-chinchure-hyN9aU9Tm-c-unsplash.jpg","width":680,"height":1020},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/bootstrap-card-component\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"CSS","item":"https:\/\/careerkarma.com\/blog\/css\/"},{"@type":"ListItem","position":3,"name":"Bootstrap Card Component"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/38a169875c6272296a3430eecc389f8b","name":"Stefan Dili","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/profilna-1-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/profilna-1-150x150.jpg","caption":"Stefan Dili"},"url":"https:\/\/careerkarma.com\/blog\/author\/stefan-dili\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/21005","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/users\/85"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=21005"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/21005\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/21006"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=21005"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=21005"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=21005"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}