Thursday 19 July 2012

How to Disable text wrapping inside an element in css


<!DOCTYPE html>
<html>
<head>
<style type="text/css">
p
{
white-space:nowrap;
}
</style>
</head>
<body>

<p>
some text.some text.some text.
some text.some text.some text.
some text.some text.some text.
some text.some text.some text.
</p>

</body>
</html>

0 Responses to “How to Disable text wrapping inside an element in css”

Post a Comment