Skip to content

norbertohdez/css-sprite-flags

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

CSS Image Sprite of country flags

CSS Image sprite of country Flags with Pirates with different image sizes:

Example usage

First copy the set you want to you to your local html project

Next edit the CSS filename and make sure the image url is correct for your project:

.flag.flag-24 {
  // ...
  background-image: url('sprite-flags-24x24.png'); 
  // ...
}

Next include the appropriate CSS file in the head of your HTML. E.g. if you want to use 24x24 and the filename is sprite-flags-24x24.css in your project

<link
  rel="stylesheet"
  type="text/css"
  href="sprite-flags-24x24.css"
/>

Next start rendering some flags!

<i class="flag flag-16 flag-nl"></i>
<i class="flag flag-24 flag-nl"></i>
<i class="flag flag-32 flag-nl"></i>
<i class="flag flag-48 flag-nl"></i>
<i class="flag flag-64 flag-nl"></i>

About

CSS Image sprite of country Flags

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 54.3%
  • HTML 43.0%
  • Ruby 2.7%