Skip to content
This repository has been archived by the owner on Aug 5, 2020. It is now read-only.

Latest commit

 

History

History

change-br

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Change Break

This mixin provides a shorthand method to convert <br> tags into any arbitrary content.

    @include change-br($content);

Parameters

$content [string]

Default:

Takes a string and replaces all occurrences of break tags with that string.

Usage

.element {
    @include change-br;
}

Output

.element {
    br {
    content: ‘’;
  }

    br::after {
        content: $content;
    }
}