css父级没包住子级是怎么回事,我用firebug查看,确实在父级的div中,但是就是没有包括子级的内容

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css父级没包住子级是怎么回事,我用firebug查看,确实在父级的div中,但是就是没有包括子级的内容相关的知识,希望对你有一定的参考价值。

浮动了没清理:元素浮动过后,父失去高度包含不住子。清理浮动后就能正确包含,有七八种方法,自行百度:css清理或清除浮动 参考技术A 给父级加宽度和高度,再加overflow:hidden; 参考技术B 这种情况一般发生在子级是浮动情况,可以给父级添加css
height:100%;overflow:hidden;
参考技术C 没代码 无法告诉你具体怎么改
在子级后面加 <div style=”clear:both”></div> 清除子级浮动
参考技术D 没看见你的代买也不好帮你分析,你可以加这个(112。7577。625)号,我们们讨论一下

在一个查询中保存父级和子级(子级对父级有空值引用)

【中文标题】在一个查询中保存父级和子级(子级对父级有空值引用)【英文标题】:Save parent with children in one query ( children have null value reference for parent) 【发布时间】:2017-02-18 21:23:38 【问题描述】:

美好的一天。我无法在同一个查询中保存有孩子的父母。但是孩子们对父母的参考是空的...... 我的数据库中的父级是表“food_in_the_cart”,它的模型在这里:

    public class FoodInTheCartModel
    
        public virtual int ID  get; set; 
        public virtual ClientModel Client  get; set; 
        public virtual EstablishmentModel Stocked  get; set; 
        public virtual ProductModel DesirableProduct  get; set; 
        public virtual IList<CartAdditiveModel> Additives  get; set;  //children
        public virtual void AddAdditivesToTheCart(CartAdditiveModel a)
        
            a.Cart = this;
            Additives.Add(a);
        
        public FoodInTheCartModel()
        
            this.Additives = new List<CartAdditiveModel>();
        
    

也映射:

public FoodInTheCartMap()

    Table("food_in_the_cart");

    Id(x => x.ID)
        .Column("id")
        .GeneratedBy.Native("food_in_the_cart_id_seq");

    References(x => x.Client)
        .Column("fk_id_client")
        .Not.Nullable()
        .Not.LazyLoad();

    References(x => x.DesirableProduct)
        .Column("fk_id_product")
        .Not.Nullable()
        .Not.LazyLoad();

    References(x => x.Stocked)
        .Column("fk_id_stock")


 .Not.Nullable()
            .Not.LazyLoad();

        HasMany(x => x.Additives)
            .Table("cart_additive")
            .Cascade.SaveUpdate()
            .Cascade.All()
            .Inverse()              
            .Not.LazyLoad();
    

而孩子是cart_additivecart_additive 的模型是 CartAdditive 的类型,并且对 food_in_the_cart 的模型有参考,同样映射这个参考是:

        References(x => x.Cart)
            .Column("fk_id_cart")                                      
            .Not.LazyLoad();

这两个表的类型关系是一对多的:food_in_the_cart有很多cart_additive。似乎我尝试了一切来为有孩子的父母保存查询......但是孩子的父母仍然有空值。如何使子级中的父级引用不为空?

【问题讨论】:

【参考方案1】:

我从 FoodInTheCartMap 中的很多中删除了 Insert() 并在那里添加了 AsBug(),还允许 cart_additives 中的 strong>food_in_the_cart 作为参考,在此表的模型中称为 Cart。一切都以这种方式工作。耶。

【讨论】:

以上是关于css父级没包住子级是怎么回事,我用firebug查看,确实在父级的div中,但是就是没有包括子级的内容的主要内容,如果未能解决你的问题,请参考以下文章

使用 Firebug,我可以看到父级内的 HTML<Div> 部分,当我使用 Selenium 获取基于 html 源的 <div id> 时,我看不到子级

关于CSS中的ul与li的问题 具体代码如下 怎么解决子级li挤父级li

为啥我的 CSS 模块父级继承了子级的属性?

JS添加/移除事件

CSS:强制子级使用父级(表格单元格)高度

当父级处于悬停状态时CSS过渡子级