Solved
How to add a vertical line before last column in a multiple choice question with horizontal layout?
Hello Community,
I have a multiple choice question with horizontal layout of the options. The last option is "Don't know". I want to add a vertical line before this option on the left side. I searched the internet and tried couple of options, but no success so far. Can anybody please help.
Thanks,
Ank
Best answer by TomG
Add this CSS to the question text:
```
<style>
@media only screen and (min-width:481px) {
td:last-of-type { border-left: 1px solid grey; }
td:last-of-type label { margin-left:10px; }
}
</style>
```
Adjust border-left and margin-left properties as needed.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.

