user7410898
user7410898

Reputation: 119

How do you set the row height in Semantic UI?

How do you set the row height in Semantic UI given this,

<div class="ui grid">
  <div class="row">
  <div>
</div>

Upvotes: 2

Views: 6856

Answers (1)

Peter
Peter

Reputation: 102

In 'row' class set height.

eg.

.row {
height: 100px;
}

Upvotes: 2

Related Questions