I'm encountering some problems with how elements are being displayed in Google Chrome. Interestingly, when I check the code in Firefox or Edge, everything looks correct. It appears that Chrome is either calculating a smaller width for "col-sm-1" or it's not taking into account the padding.
This is the HTML code I have:
/*dropdown size*/
.dropdown-sm {
font-size: 1.25rem;
}
.
.
.(CSS code continues)
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="checkbox.css">
</head>
.
.
.(HTML code continues)
While both Firefox and Edge display the elements correctly:
Chrome seems to be disrupting the layout:
How can I resolve these layout issues specifically for Chrome?