@media (orientation: landscape) {
  .rotateme {
    display: none;
  }
}

@media (orientation: portrait) {
  .rotateme {
    display: block;
        width: 100%;
        background-color: lightyellow;
        padding: 10px;
        border: 4px solid red;
  }
}