Posted in sections
3696
4:33 am, September 20, 2021
 

easy section wrap in foundation

i am always writing these wrap sections so i thought i would just add a basic one here, easy to copy and paste into a new section

HTML

<style>
.mysection-wrap {
	margin:0 auto;
	width:100%;
	max-width:1200px;
	padding:50px 0;
	text-align:center;
}
.mysection {}
.mysection-title {}
.mysection-text {}
</style>
<div class='mysection-wrap'>
	<div class='grid-container'>
		<div class="grid-x grid-padding-x grid-margin-x">
			<div class="large-12 cell">
				<div class="mysection">
					<div class="mysection-title">
						<h2>My Section Title</h2>
					</div>
					<div class="mysection-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. In eu velit sed nunc euismod tempor ac at odio. Mauris sit amet mi ac turpis rutrum congue sit amet id nunc.
					</div>
				</div>
			</div>
		</div>
	</div>
</div>

CSS

.mysection-wrap {
	margin:0 auto;
	width:100%;
	max-width:1200px;
	padding:50px 0;
	text-align:center;
}
.mysection {}
.mysection-title {}
.mysection-text {}

Scripts

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.7.1/css/foundation.min.css" integrity="sha512-v+8NDdbqsMuwxIAN2W+k6TQRNEBHl8JYCqlPfrCTWbulRJicymcTHMVS3BSw791eCHMdkQxRznzxxsvEuNQe3w==" crossorigin="anonymous" referrerpolicy="no-referrer" />

View Statistics
This Week
53
This Month
344
This Year
487

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
All of humanity's problems stem from man's inability to sit quietly in a room alone, wrote Blaise Pascal.
Unknown
Random CSS Property

:in-range

The :in-range CSS pseudo-class represents an <input> element whose current value is within the range limits specified by the min and max attributes.
:in-range css reference