We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create bulleted lists wrapping into two columns for all web browsers.
Expected behaviour
Two or more columns based on presets.
Actual behaviour
N/A
reference: https://stackoverflow.com/questions/6509106/is-there-a-way-to-break-a-list-into-columns# ul { -moz-column-count: 2; -moz-column-gap: 20px; -webkit-column-count: 2; -webkit-column-gap: 20px; column-count: 2; column-gap: 20px; }
ul ul { -moz-column-count: 1; -moz-column-gap: 20px; -webkit-column-count: 1; -webkit-column-gap: 20px; column-count: 1; column-gap: 20px; } Produces:
Bulleted lists only works in FireFox.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Create bulleted lists wrapping into two columns for all web browsers.
Expected behaviour
Two or more columns based on presets.
Actual behaviour
N/A
Steps to reproduce the problem
reference: https://stackoverflow.com/questions/6509106/is-there-a-way-to-break-a-list-into-columns#
ul {
-moz-column-count: 2;
-moz-column-gap: 20px;
-webkit-column-count: 2;
-webkit-column-gap: 20px;
column-count: 2;
column-gap: 20px;
}
ul ul {
-moz-column-count: 1;
-moz-column-gap: 20px;
-webkit-column-count: 1;
-webkit-column-gap: 20px;
column-count: 1;
column-gap: 20px;
}
Produces:
Bulleted lists only works in FireFox.
System Information
The text was updated successfully, but these errors were encountered: