Posted in sections
3617
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
106
This Month
410
This Year
408

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
You want to be the best, you MUST put the long yards in! Nothing comes easy in life so stop wishing and start DOING! So many people would rather bitch and moan than help themselves. Dont be one of those negative drainers, start today, make a small change and keep going forwards with this attitude!
Unknown
Random CSS Property

:first

The :first CSS pseudo-class, used with the @page at-rule, represents the first page of a printed document. (See :first-child for general first element of a node.)
:first css reference