1.

How Can We Define The Font Awesome Icons Size?

Answer»

We can define the size of Icons by using FOLLOWING CODES:

Example:

<html>

<head>

<link rel = "stylesheet"

href = "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css">

<style>

i.mysize{

font-size: 10EM;

}

</style>

</head>

<body>

<i CLASS = "FA fa-inr mysize"></i>

</body>

</html>

We can define the size of Icons by using following codes:

Example:

<html>

<head>

<link rel = "stylesheet"

href = "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css">

<style>

i.mysize{

font-size: 10em;

}

</style>

</head>

<body>

<i class = "fa fa-inr mysize"></i>

</body>

</html>



Discussion

No Comment Found