Currently in the process of learning bootstrap for website design, I am working on creating a user profile page. The layout includes fields such as name and email with corresponding values displayed inline when screen size permits. My goal is to align the field to the left and the value to the center using bootstrap classes and css if necessary. Below is the code snippet:
<!DOCTYPE html>
<html lang="en">
<head>
...
</body>
</html>
I aim to position the "Email" (within the <strong> tag) at the left within the parent element "profile-info" while centering the span (with class "value") within that same parent.