a4-fit-text
TypeScript icon, indicating that this package has built-in type declarations

9.0.0 • Public • Published

a4-fit-text

Angular 7 Component to fit text into a container. The text will be auto scaled according to the width and height of the container.

How-To

Install

npm install a4-fit-text

app.module.ts

  1. Add FitTextModule to imports of the app.module.ts.
 
...
import { FitTextModule } from 'a4-fit-text';
...
 
@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    ...,
    FitTextModule,
    ...
  ],
  ...
})

HTML

<div class="container">
  <fit-text text="This is a test"></fit-text>
</div>

CSS

.container {
  display: block;
  height: 100px;
}

Hint: Scale the browser and the text will auto scale to fit to the container.

Package Sidebar

Install

npm i a4-fit-text

Weekly Downloads

6

Version

9.0.0

License

MIT

Unpacked Size

113 kB

Total Files

23

Last publish

Collaborators

  • cccheng