forked from mirrors/gecko-dev
outline-offset isn't included in the outline shorthand. Differential Revision: https://phabricator.services.mozilla.com/D57347 --HG-- extra : moz-landing-system : lando
11 lines
160 B
HTML
11 lines
160 B
HTML
<!doctype html>
|
|
<title>CSS Rest Reference</title>
|
|
<style>
|
|
table {
|
|
outline: 1px solid blue;
|
|
outline-offset: 10px;
|
|
}
|
|
</style>
|
|
<table>
|
|
Some content
|
|
</table>
|