<div class="wrapper">
  <p lang="ja" class="text">こんにちは</p>
  <p lang="en" class="text">Hello</p>
</div>
.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.text {
  + .text {
    margin-top: 2rem;
  }
  &:lang(ja) {
    color: red;
  }
  &:lang(en) {
    color: blue;
  }
}
View Compiled

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.