How to place SVG icons on a round circle side by side to another div using Bootstrap? Last Updated : 05 May, 2022 Comments Improve Suggest changes Like Article Like Report Bootstrap Icons are SVGs, so they scale quickly and easily and can be styled with CSS. Approach: We can place the SVG icons and give them the shape of a circle. This will make the SVG icons appear to be in a circular shape. This can be achieved using a Bootstrap class called "rounded-circle" Syntax: <img class = "rounded-circle" src = "..." alt = "image"> Example: Let us try to place three SVG icons on a circle that appears on the same line (side by side as required). To make sure all the icons appear side by side, we have to include float: left; inside the CSS for <img> tag. Additionally (optionally), we also add the Bootstrap class "shadow-lg", to get shadow beneath each SVG icon to make it look good. Example: place this <img> tag inside a <div> tag as shown below: HTML <!DOCTYPE html> <html> <head> <meta charset="utf-8"/> <meta name="viewport" content="width=device-width"/> <title>JS Bin</title> <link rel="stylesheet" href= "https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity= "sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous"/> <style> img { width: 100px; height: 100px; margin-top: 50px; float: left; margin-left: 10px; } </style> </head> <body> <div><img class="shadow-lg rounded-circle" src= "https://img.icons8.com/emoji/2x/smiling-face.png" alt="image1" /> </div> <div><img class="shadow-lg rounded-circle" src= "https://img.icons8.com/emoji/2x/slightly-smiling-face.png" alt="image2"/> </div> <div><img class="shadow-lg rounded-circle" src= "https://img.icons8.com/emoji/2x/smiling-face-with-smiling-eyes.png" alt="image3"/> </div> </body> </html> Output: References: Bootstrap DocumentationSmiley SVG iconsShadow in Bootstrap Comment More infoAdvertise with us Next Article How to place SVG icons on a round circle side by side to another div using Bootstrap? S sidrk339 Follow Improve Article Tags : Web Technologies Bootstrap Bootstrap-4 Bootstrap-Misc HTML-SVG +1 More Similar Reads How to add icons in project using Bootstrap ? Bootstrap Icons is an open-source icon library specifically designed for use with Bootstrap's framework. Adding icons using Bootstrap means integrating the Bootstrap Icons library into your project and using its icon classes in HTML. This allows easy inclusion of scalable, customizable icons directl 2 min read How to Create Scrollable Sidebar with Icons in Bootstrap 5 ? To create a scrollable sidebar with icons in Bootstrap 5, we can use the Bootstrap grid system for layout, incorporating a container, row, and column structure. Place your sidebar content inside a div with the appropriate classes to control its appearance. Use Bootstrap's utility classes and icon li 2 min read How to add tooltip to an icon using Bootstrap ? In this article, we will see how to add tooltip element to an icon using Bootstrap. A Tooltip is used to provide interactive textual hints to the user about the element when the mouse pointer moves over. The tooltip is quite useful for displaying the description of different elements on the webpage. 2 min read How to Align navbar logo to the left screen using Bootstrap ? It is very easy in Bootstrap to align items left and right by using the bootstrap classes. By default, it sets to left. If you want to align items center or right then it will be done by yourself. To align the navbar logo to the left of the screen with the Bootstrap method is a quick trick that can 2 min read How to create a rounded table in Bootstrap 5? Bootstrap 5 provides various classes that can be used for styling the tables such as changing the heading appearance, making the rows striped, adding or removing borders, making rows hoverable, etc. In this article, we will learn How to create a rounded table in Bootstrap 5. Here we use two differen 2 min read Like