Skip to content
test-rhs-link-on-title-row.html 1.01 KiB
Newer Older
Yuanle Song's avatar
Yuanle Song committed
<!DOCTYPE html>
<html lang="en">

  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
    <title>rhs link on title row</title>
    <style type="text/css">
      body {}
      .container {
	  width: 95vw;
	  max-width: 700px;
	  margin: 10px auto;
	  height: 100px;
	  border: 1px black solid;
      }
      .title {
	  display: flex;
      }
      .title h3 {
	  border: 1px blue dotted;
	  margin: 0 1em;
      }
      .title-button-group {
	  border: 1px blue dotted;
	  flex-grow: 1;
	  display: flex;
	  justify-content: flex-end;
	  margin: 0 1em 0 0;
      }
      .title-button {
	  padding: 5px;
      }
      p {
	  padding: 5px;
      }
    </style>
  </head>

  <body>
    <div class="container">
      <div class="title">
	<h3>Some Title</h3>
	<div class="title-button-group">
	  <a class="title-button" href="#">button1</a>
	  <a class="title-button" href="#">button2</a>
	</div>
      </div>
      <p>Here is content</p>
    </div>
  </body>

</html>