diff --git a/BUILD.md b/BUILD.md index 8ab2bfc..de5386a 100644 --- a/BUILD.md +++ b/BUILD.md @@ -609,3 +609,11 @@ var dragBehavior = d3.drag() .on('drag', drag) .on('end', dragEnd); ``` + +Let's change the color of a circle while it's being dragged too: + +```css +circle:active { + fill: red; +} +```