Here is an example of a basic notebook:
When working on a cell I know that particular cell would have a temporary border around it to highlight that this particular cell has been selected - in my example the "Introduction" cell is highlighted. This is not the border I am referring to in my question.
I was curious to know if it is possible to add a border around any cell (particularly markdown) which remains after the output is rendered. It's a bit like bordering one or more cells in Microsoft Excel. This is just for styling purposes.
Does anyone have any ideas? Any tips are welcome :)
Here is the text written in each cell for reference:
# <span style="color:red">Example</span>
<u> **Introduction:** </u>
This notebook is just an example.
# Here is some code:
num = [1, 2, 3]
for i in num:
num = i + 1
print(num)
<span style="color:blue">***The End***</span>