THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

HTML canvas lineWidth Property

HTML canvas Reference HTML Canvas Reference

Example

Draw a rectangle with a line width of 10 pixels:

YourbrowserdoesnotsupporttheHTML5canvastag.

JavaScript:

var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
ctx.lineWidth=10;
ctx.strokeRect(20,20,80,100);
Try it yourself »

Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

Internet Explorer 9, Firefox, Opera, Chrome, and Safari support the lineWidth property.

Note: Internet Explorer 8 and earlier versions, do not support the <canvas> element.


Definition and Usage

The lineWidth property sets or returns the current line width, in pixels.

Default value: 1
JavaScript syntax: context.lineWidth=number;

Property Values

Value Description Play it
number The current line width, in pixels Play it »

HTML canvas Reference HTML Canvas Reference