Section

The b.Section constructor creates a section.

ModifierAction
b.MediumSet spacing to medium
b.LargeSet spacing to large

Bulma examples

Example
Code
b.Section(
	b.Title("Section"),
	b.Subtitle("A simple container to divide your page into ", e.Strong("sections"), ", like the one you're currently reading."),
)
ResultHTML

Section

A simple container to divide your page into sections, like the one you're currently reading.

Example
Code
b.Section(
	b.Medium,
	b.Title("Section"),
	b.Subtitle("A simple container to divide your page into ", e.Strong("sections"), ", like the one you're currently reading."),
)
ResultHTML

Section

A simple container to divide your page into sections, like the one you're currently reading.

Example
Code
b.Section(
	b.Large,
	b.Title("Medium section"),
	b.Subtitle("A simple container to divide your page into ", e.Strong("sections"), ", like the one you're currently reading."),
)
ResultHTML

Large section

A simple container to divide your page into sections, like the one you're currently reading.