Posted in sections
7548
1:13 am, October 1, 2021
 

stackable bio or biography list with portrait image title and text

a nice easily stackable bio or biography list done in foundation, just duplicate the bio-item and switch out the content and you have a nice responsive bio layout. 

As its in foundation here is a sample

or you can see the animated responsive version here

HTML

<div class='bio-section-wrap'>

  <div class='bio-item'>
    <div class="grid-x grid-padding-x grid-margin-x">
      <div class="large-2 cell">
        <div class="bio-image">
          <img src="https://unsplash.it/140/140">
        </div>
      </div>
      <div class="large-9 cell">
        <div class="bio-title">
          Lorem ipsum dolor
        </div>
        <div class="bio-text">
          Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis rutrum sapien non ornare sagittis. Fusce quis dignissim felis. Pellentesque iaculis nisl et est ultricies, id mollis lorem volutpat. Praesent nec nunc vel quam facilisis scelerisque a ut orci. Sed sed enim vestibulum ex commodo venenatis vitae in mi.
        </div>
      </div>
    </div>
  </div>

  <div class='bio-item'>
    <div class="grid-x grid-padding-x grid-margin-x">
      <div class="large-2 cell">
        <div class="bio-image">
          <img src="https://unsplash.it/140/140">
        </div>
      </div>
      <div class="large-9 cell">
        <div class="bio-title">
          Lorem ipsum dolor
        </div>
        <div class="bio-text">
          Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis rutrum sapien non ornare sagittis. Fusce quis dignissim felis. Pellentesque iaculis nisl et est ultricies, id mollis lorem volutpat. Praesent nec nunc vel quam facilisis scelerisque a ut orci. Sed sed enim vestibulum ex commodo venenatis vitae in mi.
        </div>
      </div>
    </div>
  </div>

  <div class='bio-item'>
    <div class="grid-x grid-padding-x grid-margin-x">
      <div class="large-2 cell">
        <div class="bio-image">
          <img src="https://unsplash.it/140/140">
        </div>
      </div>
      <div class="large-9 cell">
        <div class="bio-title">
          Lorem ipsum dolor
        </div>
        <div class="bio-text">
          Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis rutrum sapien non ornare sagittis. Fusce quis dignissim felis. Pellentesque iaculis nisl et est ultricies, id mollis lorem volutpat. Praesent nec nunc vel quam facilisis scelerisque a ut orci. Sed sed enim vestibulum ex commodo venenatis vitae in mi.
        </div>
      </div>
    </div>
  </div>




</div>

CSS

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;700&display=swap');
.bio-section-wrap {}
.bio-item {
  margin-bottom:20px;
  padding-bottom:20px;
}
.bio-image img {
  display:block;
}
.bio-image {
  display: flex;
	align-items: center;
	justify-content: center;
  width:100%;
}
.bio-title {
  font-family:"Poppins", sans-serif;
  font-weight:bold;
  font-size:22px;
  margin-bottom:10px;
}
.bio-text {
  font-family:"Open Sans", sans-serif;
}

Scripts

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.7.3/css/foundation.min.css" />

View Statistics
This Week
114
This Month
558
This Year
901

No Items Found.

Add Comment
Type in a Nick Name here
 
Search Code
Search Code by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
The mind must be given relaxation; it will arise better and keener after resting. As rich fields must not be forced-for their productiveness, the have no rest, will quickly exhaust them constantlabor will break the vigor of the mind, but if it is released and relaxed a little while, it will recover its powers
Seneca
Random CSS Property

font-family

The font-family CSS descriptor allows authors to specify the font family for the font specified in an @font-face rule.
font-family (@font-face) css reference