<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
.limited-width {
max-width: 120px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: inline-block;
}
</style>
<title>Limit Width Example</title>
</head>
<body>
<p>This is some text without width limitation.</p>
<p><b class="limited-width">This is some text with a limited width.</b></p>
<p><b class="limited-width">This is some longer text with a limited width.</b></p>
</body>
</html>