Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is this layout possible with div's

regions/divs in custom Drupal 7 theme

This should be the home view on larger screens. The DIVS are all regions in my Drupal 7 theme but I'm having trouble with DIV3. Thanks for any help on this.

like image 205
Gergo P Avatar asked Sep 28 '16 07:09

Gergo P


People also ask

Is it possible to define the layout in any form with the help of CSS?

CSS page layout techniques allow us to take elements contained in a web page and control where they're positioned relative to the following factors: their default position in normal layout flow, the other elements around them, their parent container, and the main viewport/window.

What are three types of layouts CSS?

CSS layout types: Fixed, Elastic, and Fluid.

What is div layout?

HTML Div Based LayoutUsing the <div> elements is the most common method of creating layouts in HTML. The <div> (stands for division) element is used for marking out a block of content, or set of other elements inside an HTML document. It can contain further other div elements if required.

Can we make table using div?

Last week, I covered using the DIV tag to make unique content for your course, but did you know that you can also use the DIV tag to make tables! All you need to do is include CSS to create interesting tables.


Video Answer


1 Answers

This is possible with CSS columns in modern browsers, falling back to using the jQuery Masonry plugin in older browsers.

A full explanation can be found at Creating a CSS-only Responsive Masonry

like image 133
Kani Raj Avatar answered Oct 17 '22 03:10

Kani Raj