简体   繁体   中英

Zurb: Foundation Framework

I apologize, if this is extremely simple - I have created a webpage using the foundation framework(5.0) - it is very simplistic at the moment - and I am just looking for a way to define the height of elements on the page. If anyone could point me in the right direction it would be much appreciated.

If you want to define the height of any element one simple way is to make a class for that element

<div class="high">
...
...
</div>

and in your stylesheet

.high{
height:x px;
}

replace x with the value you need.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM