I have a CSS selector that is supposed to display sub-content when a label is clicked. The selector is along the lines of input:checked + element +
input:checked + element +
As mdmullinax states, this is an outstanding bug in chrome.
mdmullinax
This hack worked for me from the link in the accepted answer:
body { -webkit-animation: bugfix infinite 1s; } @-webkit-keyframes bugfix { from { padding: 0; } to { padding: 0; } }