CommentApr 5, 2018
Short answer: Yes; it's what px are. Per Material.io: A dp is equal to one physical pixel on a screen with a density of 160. To calculate dp: dp = (width in pixels * 160) / screen density When writing CSS, use px wherever dp or sp is stated. Dp only needs to be used in developing for Android. Emphasis mine. See more about DP here.