Skip to content

Instantly share code, notes, and snippets.

@Rachind
Created June 6, 2016 17:31
Show Gist options
  • Save Rachind/adb00b2607eb1c705b349f918294edb0 to your computer and use it in GitHub Desktop.
Save Rachind/adb00b2607eb1c705b349f918294edb0 to your computer and use it in GitHub Desktop.
CSS Text Two Columns
.text-columns {
width:100%; /*указываем общую ширину блока с колонками*/
text-align:left; /*выравнивание текста внутри колонок*/
column-width: 570px; /*указываем ширину колонок*/
-moz-column-width: 570px;
-webkit-column-width: 570px;
column-gap: 30px; /*отступ между колонками*/
-moz-column-gap: 30px;
-webkit-column-gap: 30px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment