<div></div>
div {
  width: 300px;
  height: 50px;
  position: fixed;
  inset: 0;
  margin: auto;
  animation: animate 10s linear infinite alternate;
  outline: 1px solid;
}

@keyframes animate {
  0% { outline-width: 1px; }
  100% { outline-width: 50px; }
}
View Compiled

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.