We have text aligned left by default. If you are using Twitter's Bootstrap Framework and want to align text right then you must make use of class="text-right" in the element that contains the text.

Let's have a look at an example :
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap : Text Align Right</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<p class="text-right" style="padding:20px">Text aligned right</p>
</div>
</body>
</html>
- How to disable button in Bootstrap
- Bootstrap tooltip not working
- Bootstrap Button Colors Classes
- Rounded Images in Bootstrap framework
- Right Align Text in Bootstrap framework
- How to add hint text in bootstrap input text field and text area
- Create Bootstrap carousel slider with Text
- Bootstrap Nav Menu Dropdown on hover
- [Solved] Bootstrap tooltip not working
- Align left align text in Bootstrap
- Linux Remove or Delete Files and Directories using Terminal Commands - Linux
- reCAPTCHA Implementation Tutorial - CSS
- FCM Messages Test Notification!!!! - Microsoft Teams, Google Hangouts push alert - News
- Find Duplicate Files using Mac Terminal Command - MacOS
- Git: Step-by-Step - How to Push Local Brach to GitHub - Git
- Step by Step: Spring Boot + JPA + MySQL + Redis as Cache - Java
- How to List all Packages installed using pip [Python] - Python
- Install Java Runtime Environment (Oracle or open JRE) on Ubuntu - Linux