I'm trying to create a menu fixed to the top of the page:
<Segment inverted>
   <Menu fixed = "top" inverted pointing
       secondary stackable size="large" >
     <Container>
       <Menu.Item as="a" name="Item1">
       <Menu.Item as="a" name="Item2">
     </Container>
   </Menu>
</Segment>
When the Menu fixed to top the surrounding Segment is sized smaller than the embedded Menu (and also not fixed to top).
What's the proper way to do it?
 
                        
You shouldn't use
secondaryandinvertedat the same time. If you removesecondaryattribute, I think you'll see the results.Also you can add a custom class to the content
Segmentso if theMenuis fixed, adding amargin-top: 32px;(or any size you want) to the contentSegment.