Merge pull request #363 from tailwindcss/fix-362

Undo border-style reset Normalize applies to images
This commit is contained in:
Adam Wathan 2018-01-25 07:34:37 -05:00 committed by GitHub
commit cd2f855eee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -527,6 +527,21 @@ ul {
* Tailwind custom reset styles
*/
/**
* Allow adding a border to an element by just adding a border-width.
*
* By default, the way the browser specifies that an element should have no
* border is by setting it's border-style to `none` in the user-agent
* stylesheet.
*
* In order to easily add borders to elements by just setting the `border-width`
* property, we change the default border-style for all elements to `solid`, and
* use border-width to hide them instead. This way our `border` utilities only
* need to set the `border-width` property instead of the entire `border`
* shorthand, making our border utilities much more straightforward to compose.
*
* https://github.com/tailwindcss/tailwindcss/pull/116
*/
*,
*::before,
*::after {
@ -535,6 +550,19 @@ ul {
border-color: config('borderColors.default', currentColor);
}
/**
* Undo the `border-style: none` reset that Normalize applies to images so that
* our `border-{width}` utilities have the expected effect.
*
* The Normalize reset is unnecessary for us since we default the border-width
* to 0 on all elements.
*
* https://github.com/tailwindcss/tailwindcss/issues/362
*/
img {
border-style: solid;
}
/**
* Temporary reset for a change introduced in Chrome 62 but now reverted.
*