Help:CreateBox
From Thinkmath
Wiki markup
<blockquote style="background: white; border: 1px solid rgb(153, 153, 153); padding: 1em;"> This is an example of blocked text. * It has a bulleted list * with two items in it. : It also has some indented text </blockquote>
What it looks like in your browser
This is an example of blocked text.
- It has a bulleted list
- with two items in it.
- It also has some indented text
The code <blockquote style="background: white; border: 1px solid rgb(153, 153, 153); padding: 1em;"> offers options that you can change.
- You probably want a white background, but you can choose yellow, red, green, silver, black, blue...
- After "border:" you are specifying attributes of the border.
- It can be thicker than 1 pixel (e.g., 4px).
- Its color parameters can vary from 0 to 255. rgb(0, 0, 0) is black, so rgb(153, 153, 153) is grayish. rgb(255, 150, 150) emphasizes the red, making a pinkish color.
