Hey folks,
I have this problem, lets take this text from from 24ways.org just for example->
Elbow room
Paying attention to your typography is important, but it’s not just about making it look nice.
Careful use of the line-height property can make your text more readable, which helps everyone, but is particularly helpful for those with dyslexia, who use screen magnification or simply find it uncomfortable to read lots of text online.
When lines of text are too close together, it can cause the eye to skip down lines when reading, making it difficult to keep track of what you’re reading across.
So, a bit of room is good.
And Im making a site, which uses MSSQL and like above text if I save it to database (varchar(MAX)) it does loose all formattings and its just direct text without any Enters or formats. So how I dont loose formattings. Thnx.
I save the text this way and the MAIN text is that BlogBox.Text
string ins = string.Format("INSERT INTO blogs (topic, date, blog, author) VALUES ('{0}', '{1}', '{2}', '{3}')", TopicBox.Text, DateTime.Now.ToString("g"), BlogBox.Text, User.Identity.Name.ToString());
SqlDataSource1.InsertCommand = ins;
SqlDataSource1.Insert();