blob: 0f5213488782076a844daf8ddd23f7aa6ce13db3 [file] [log] [blame]
<!--
Copyright 2020 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<style>
#focus:not(:focus) .show-on-focus {
display: none;
}
#focus {
background-color: rgba(0, 128, 0, 1);
}
</style>
<div id="focus" tabindex="0">
<span>Some text with a green background once focused</span>
<span class="show-on-focus">Some text here, only shown on hover</span>
</div>