mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
feat(plugin): Add clear-left, clear-right, clear-both classes
Added clear-left, clear-right and clear-both classes to float.js Implements #1050
This commit is contained in:
parent
dff08348fd
commit
ee6241a3b7
@ -5,6 +5,9 @@ export default function() {
|
||||
'.float-right': { float: 'right' },
|
||||
'.float-left': { float: 'left' },
|
||||
'.float-none': { float: 'none' },
|
||||
'.clear-left': { clear: 'left' },
|
||||
'.clear-right': { clear: 'right' },
|
||||
'.clear-both': { clear: 'both' },
|
||||
'.clearfix:after': {
|
||||
content: '""',
|
||||
display: 'table',
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user