How do I style HTML5 canvas text to be bold and/or italic?
问题 I'm printing text to a canvas in a pretty straight forward way: var ctx = canvas.getContext('2d'); ctx.font = "10pt Courier"; ctx.fillText("Hello World", 100, 100); But how can I change the text to bold, italic or both? Any suggestions to fix that simple example? 回答1: You can use any of these: ctx.font = "italic 10pt Courier"; ctx.font = "bold 10pt Courier"; ctx.font = "italic bold 10pt Courier"; For further information, here are a couple of resources: Dive into HTML5 How to display text in