How to add bottom border to text in Word?

I have some text in Word:

enter image description here

And i want some portion to have a bottom border:

enter image description here

So performing the obvious action (and the action documented by Microsoft in KB 145149), i select to apply a Bottom Border:

enter image description here

But rather than applying a bottom border, it applies all Outside Borders:

enter image description here

The reason i know it's all "Outside Border", is because Word tells me:

enter image description here

How do i place a line under text in Word (2010, 64-bit, Windows 10, on a Friday)?

Bonus Reading

1

4 Answers

Have you tried just using the underline?

enter image description here

You cannot add a bottom (or any single edge) border to text in Microsoft Word. Instead, use underline.

Regular text has only one border. The following macro confirms.

MsgBox Selection.Font.Borders.Count

As stated below, a Paragraph has four borders (left, right, top, bottom).

MsgBox Selection.Sections(1).Borders.Count

Borders Object (Word)

The number of members in the Borders collection is finite and varies depending on the type of object. For example, a table has six elements in the Borders collection, whereas a paragraph has four.

You can add just a top border or bottom border to a paragraph in MS word; but most annoyingly this feature does not work unless you first select a whole paragraph. then you can select the "top border" or whatever from the menu options. If you've just selected a line of the paragraph, or a word or two, you'll get a full box round whatever you selected.

This is very annoying, and it took me a frustrating while to work out why I kept getting a full border instead of a top border.

If you highlight the word(s) and then go to Font you can change 'underline style',so you can adjust the style and the colour. Simples!

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like